summaryrefslogtreecommitdiffstats
path: root/intl/loadmsgcat.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-08-14 11:49:07 +0000
committerBruno Haible <bruno@clisp.org>2001-08-14 11:49:07 +0000
commit8af193fbf37556ba3797f59cbdc78439f7c32224 (patch)
tree3ed31e9f5ada81562b37c7ae60d6e52ddf9befe8 /intl/loadmsgcat.c
parent68e84ecc9decc4630ba4d327d7e2383d3200f485 (diff)
downloadexternal_gettext-8af193fbf37556ba3797f59cbdc78439f7c32224.zip
external_gettext-8af193fbf37556ba3797f59cbdc78439f7c32224.tar.gz
external_gettext-8af193fbf37556ba3797f59cbdc78439f7c32224.tar.bz2
Correct use of <ctype.h> functions.
Diffstat (limited to 'intl/loadmsgcat.c')
-rw-r--r--intl/loadmsgcat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intl/loadmsgcat.c b/intl/loadmsgcat.c
index d589243..fd73bd9 100644
--- a/intl/loadmsgcat.c
+++ b/intl/loadmsgcat.c
@@ -507,7 +507,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);