Commit abfb4190 authored by Neal Norwitz's avatar Neal Norwitz

Fix a warning on alpha

parent d0311c33
...@@ -70,7 +70,7 @@ PyObject *normalizestring(const char *string) ...@@ -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;
......
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