mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 17:36:18 +03:00
Fixed sign comparison warning
This commit is contained in:
parent
11b4df3ff9
commit
7581b48706
|
@ -1243,7 +1243,7 @@ font_getvarnames(FontObject *self) {
|
||||||
return PyErr_NoMemory();
|
return PyErr_NoMemory();
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < num_namedstyles; i++) {
|
for (unsigned int i = 0; i < num_namedstyles; i++) {
|
||||||
list_names_filled[i] = 0;
|
list_names_filled[i] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user