diff options
Diffstat (limited to 'lib/libc/stdlib/strtoul.c')
-rw-r--r-- | lib/libc/stdlib/strtoul.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/strtoul.c b/lib/libc/stdlib/strtoul.c index 820c3ab271b25..6afe9d8da2b40 100644 --- a/lib/libc/stdlib/strtoul.c +++ b/lib/libc/stdlib/strtoul.c @@ -86,13 +86,13 @@ strtoul(nptr, endptr, base) } if (base == 0) base = c == '0' ? 8 : 10; - any = 0; + acc = any = 0; if (base < 2 || base > 36) goto noconv; cutoff = ULONG_MAX / base; cutlim = ULONG_MAX % base; - for (acc = 0; ; c = *s++) { + for ( ; ; c = *s++) { if (!isascii(c)) break; if (isdigit(c)) |