summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1999-11-04 04:57:05 +0000
committerache <ache@FreeBSD.org>1999-11-04 04:57:05 +0000
commitcf9ff6546cdddd8b3fcdf4a1101b8287cfb795ef (patch)
treebd1db9b507a3e8d1302d4583a01745749dd76853 /lib/libc/stdio
parent7cff08527c03845203ebff80a4804022572ab3c5 (diff)
downloadFreeBSD-src-cf9ff6546cdddd8b3fcdf4a1101b8287cfb795ef.zip
FreeBSD-src-cf9ff6546cdddd8b3fcdf4a1101b8287cfb795ef.tar.gz
Add unsigned char cast to isdigit
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/mktemp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/mktemp.c b/lib/libc/stdio/mktemp.c
index 0d1712e..af547c6 100644
--- a/lib/libc/stdio/mktemp.c
+++ b/lib/libc/stdio/mktemp.c
@@ -182,7 +182,7 @@ _gettemp(path, doopen, domkdir, slen)
if (*trv == 'Z')
*trv++ = 'a';
else {
- if (isdigit(*trv))
+ if (isdigit((unsigned char)*trv))
*trv = 'a';
else if (*trv == 'z') /* inc from z to A */
*trv = 'A';
OpenPOWER on IntegriCloud