summaryrefslogtreecommitdiff
path: root/localedata/tst-ctype.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-07-18 20:32:25 +0000
committerUlrich Drepper <drepper@redhat.com>2000-07-18 20:32:25 +0000
commit74238b8ee7150094715513a9cc36ef2db79370c9 (patch)
tree40262e4b4d10fe80f9ce7bd6f87224482fbf5173 /localedata/tst-ctype.c
parentf306e7ff7bb939bfd52c4f8ec001856e0f680d07 (diff)
Mark U0000 as cntrl and U00A0 not as space.
Diffstat (limited to 'localedata/tst-ctype.c')
-rw-r--r--localedata/tst-ctype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/localedata/tst-ctype.c b/localedata/tst-ctype.c
index 9caee1a43c..5ae7e0f46f 100644
--- a/localedata/tst-ctype.c
+++ b/localedata/tst-ctype.c
@@ -118,8 +118,8 @@ punct = %04x alnum = %04x\n",
FAIL ("isgraph ('\\0') is true");
if (isblank ('\0'))
FAIL ("isblank ('\\0') is true");
- if (iscntrl ('\0'))
- FAIL ("iscntrl ('\\0') is true");
+ if (! iscntrl ('\0'))
+ FAIL ("iscntrl ('\\0') not true");
if (ispunct ('\0'))
FAIL ("ispunct ('\\0') is true");
if (isalnum ('\0'))