Update doc/common
[yaz-moved-to-github.git] / src / atoin.c
index 39af45f..4ee0313 100644 (file)
@@ -1,9 +1,9 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2011 Index Data
+ * Copyright (C) Index Data
  * See the file LICENSE for details.
  */
 
-/** 
+/**
  * \file atoin.c
  * \brief Implements atoi_n function.
  */
@@ -33,7 +33,7 @@ int atoi_n_check(const char *buf, int size, int *val)
 {
     int i;
     for (i = 0; i < size; i++)
-        if (!yaz_isdigit(*buf))
+        if (!yaz_isdigit(buf[i]))
             return 0;
     *val = atoi_n(buf, size);
     return 1;