mirror of https://github.com/python/cpython
Fix a warning on alpha
This commit is contained in:
parent
82d4cc27c6
commit
237bf40746
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue