mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
Keep gcc -Wall happy.
This commit is contained in:
parent
86bea46b3d
commit
1ed5e57684
4 changed files with 4 additions and 29 deletions
|
@ -777,7 +777,7 @@ strop_translate(self, args)
|
|||
trans_table[i] = Py_CHARMASK(table[i]);
|
||||
|
||||
for (i = 0; i < dellen; i++)
|
||||
trans_table[Py_CHARMASK(del_table[i])] = -1;
|
||||
trans_table[(int) Py_CHARMASK(del_table[i])] = -1;
|
||||
|
||||
for (i = inlen; --i >= 0; ) {
|
||||
c = Py_CHARMASK(*input++);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue