X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fatoin.c;h=4ee031307476fb943f35ce16566360955755a114;hp=39af45f6740011cb8ea3212078a6c3b6ff89bafc;hb=236966a07ceb8e28649470995f88251c37423715;hpb=4f3bcae93d51a26709c12b51261c3d95af610cb2 diff --git a/src/atoin.c b/src/atoin.c index 39af45f..4ee0313 100644 --- a/src/atoin.c +++ b/src/atoin.c @@ -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;