Fix a warning on alpha

This commit is contained in:
Neal Norwitz 2006-04-28 05:28:30 +00:00
parent 82d4cc27c6
commit 237bf40746
1 changed files with 1 additions and 1 deletions

View File

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