commit | 6a16ea07b8159c39e3433d32e5d8efb10aec06c8 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Thu Jul 19 21:11:13 2001 +0000 |
committer | Fred Drake <fdrake@acm.org> | Thu Jul 19 21:11:13 2001 +0000 |
tree | 910f217a8e0b66143eb2bfb9763db7f4477cc4fe | |
parent | 390e9dbd4f26e2108d02a22cbdfc95e442fd667f [diff] |
Kill a warning on the SGI compiler. This is part of SF patch #434992.
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 69345ea..4711123 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c
@@ -282,7 +282,7 @@ int word; unsigned char* w; - if (code < 0 || code >= 65536) + if (code >= 65536) return 0; /* get offset into phrasebook */