Fix a warning on alpha

This commit is contained in:
Neal Norwitz 2006-04-28 05:28:30 +00:00
parent 82d4cc27c6
commit 237bf40746

View file

@ -70,7 +70,7 @@ PyObject *normalizestring(const char *string)
if (ch == ' ') if (ch == ' ')
ch = '-'; ch = '-';
else else
ch = tolower(ch); ch = tolower(Py_CHARMASK(ch));
p[i] = ch; p[i] = ch;
} }
return v; return v;