Commit 88660d36 authored by Fred Drake's avatar Fred Drake

Kill a warning on the SGI compiler.

This is part of SF patch #434992.
parent c756c927
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment