diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2009-09-02 04:56:30 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2009-09-02 04:56:30 +0000 |
commit | b9a10b58106882b8972792b65c32ddcd412c67ac (patch) | |
tree | 2b625c2384f10c1d78d4a6ce14dcdc4467a7053c | |
parent | db07ef76dabf8f663663a7e9ddfad42611c730a8 (diff) |
Notes
-rw-r--r-- | lib/libc/stdtime/strptime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdtime/strptime.c b/lib/libc/stdtime/strptime.c index c7de35c0d686..51d41ed6b9b1 100644 --- a/lib/libc/stdtime/strptime.c +++ b/lib/libc/stdtime/strptime.c @@ -529,7 +529,7 @@ label: buf++; i = 0; for (len = 4; len > 0; len--) { - if (isdigit((int)*buf)) { + if (isdigit((unsigned char)*buf)) { i *= 10; i += *buf - '0'; buf++; |