Skip to content

Commit

Permalink
gh-92434: Silence a compiler warning in _xxsubinterpretersmodule.c fo…
Browse files Browse the repository at this point in the history
…r 32bit version (gh-93091)
  • Loading branch information
neonene authored May 25, 2022
1 parent 08cfc3d commit ac1dcb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_xxsubinterpretersmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2338,7 +2338,7 @@ channel_list_all(PyObject *self, PyObject *Py_UNUSED(ignored))
ids = NULL;
break;
}
PyList_SET_ITEM(ids, i, id);
PyList_SET_ITEM(ids, (Py_ssize_t)i, id);
}

finally:
Expand Down

0 comments on commit ac1dcb8

Please sign in to comment.