projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e3d3ff
)
(_nl_load_domain): Cast isspace argument to 'unsigned char'.
author
drepper
<drepper>
Tue, 27 Nov 2001 22:05:08 +0000
(22:05 +0000)
committer
drepper
<drepper>
Tue, 27 Nov 2001 22:05:08 +0000
(22:05 +0000)
intl/loadmsgcat.c
patch
|
blob
|
history
diff --git
a/intl/loadmsgcat.c
b/intl/loadmsgcat.c
index
88d50bb
..
cfe0257
100644
(file)
--- a/
intl/loadmsgcat.c
+++ b/
intl/loadmsgcat.c
@@
-492,7
+492,7
@@
_nl_load_domain (domain_file, domainbinding)
struct parse_args args;
nplurals += 9;
- while (*nplurals != '\0' && isspace (*nplurals))
+ while (*nplurals != '\0' && isspace (
(unsigned char)
*nplurals))
++nplurals;
#if defined HAVE_STRTOUL || defined _LIBC
n = strtoul (nplurals, &endp, 10);