diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-08-08 07:39:57 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-08-08 07:39:57 +0000 |
commit | 6c0e0fb8ac74743232e73021741fb21c6047cc35 (patch) | |
tree | f199ba677d160bd6c17dbcf4744df670bcb26cbd /coreutils/printf.c | |
parent | 3869f66eac8478a3c964ab23fccdd0d264f8bdd7 (diff) |
Fix a stupid bug I introduced several months ago
Diffstat (limited to 'coreutils/printf.c')
-rw-r--r-- | coreutils/printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/printf.c b/coreutils/printf.c index 28f8aa45c..181c70bfb 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c @@ -411,7 +411,7 @@ static unsigned long xstrtoul(char *arg) assert(arg!=NULL); errno = 0; - result = strtoul(arg, &endptr, 10); + result = strtoul(arg, &endptr, 0); if (errno != 0 || *endptr!='\0' || endptr==arg) fprintf(stderr, "%s", arg); //errno = errno_save; @@ -427,7 +427,7 @@ static long xstrtol(char *arg) assert(arg!=NULL); errno = 0; - result = strtoul(arg, &endptr, 10); + result = strtoul(arg, &endptr, 0); if (errno != 0 || *endptr!='\0' || endptr==arg) fprintf(stderr, "%s", arg); //errno = errno_save; |