Fixed sign comparison warning

This commit is contained in:
Andrew Murray 2024-08-07 18:44:43 +10:00
parent 11b4df3ff9
commit 7581b48706

View File

@ -1243,7 +1243,7 @@ font_getvarnames(FontObject *self) {
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;
}