Kill a warning on the SGI compiler.

This is part of SF patch #434992.
This commit is contained in:
Fred Drake 2001-07-19 21:11:13 +00:00
parent 390e9dbd4f
commit 6a16ea07b8
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ _getname(Py_UCS4 code, char* buffer, int buflen)
int word;
unsigned char* w;
if (code < 0 || code >= 65536)
if (code >= 65536)
return 0;
/* get offset into phrasebook */