mirror of
https://github.com/python/cpython.git
synced 2025-07-28 13:44:43 +00:00
Fix a warning on alpha
This commit is contained in:
parent
82d4cc27c6
commit
237bf40746
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue