Skip to content

Commit 7c53a6f

Browse files
committed
Fix compiler warning
1 parent 4e60017 commit 7c53a6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/pystate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2026,7 +2026,7 @@ _PyThreadState_PushLocals(PyThreadState *tstate, int size)
20262026
else {
20272027
tstate->datastack_top = top;
20282028
}
2029-
for (size_t i=0; i < size; i++) {
2029+
for (int i=0; i < size; i++) {
20302030
res[i] = NULL;
20312031
}
20322032
return res;

0 commit comments

Comments
 (0)