diff options
Diffstat (limited to 'lib/libc/stdlib/strtoimax.c')
-rw-r--r-- | lib/libc/stdlib/strtoimax.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/stdlib/strtoimax.c b/lib/libc/stdlib/strtoimax.c index 147fce2..46ef2ba 100644 --- a/lib/libc/stdlib/strtoimax.c +++ b/lib/libc/stdlib/strtoimax.c @@ -76,10 +76,9 @@ strtoimax(const char * __restrict nptr, char ** __restrict endptr, int base) } if ((base == 0 || base == 16) && c == '0' && (*s == 'x' || *s == 'X') && - ((s[1] >= 'a' && s[1] <= 'f') || - (s[1] >= 'A' && s[1] <= 'F') || - (s[1] >= '0' && s[1] <= '9')) - ) { + ((s[1] >= '0' && s[1] <= '9') || + (s[1] >= 'A' && s[1] <= 'F') || + (s[1] >= 'a' && s[1] <= 'f'))) { c = s[1]; s += 2; base = 16; |