mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
gh-103617: Fix compiler warning in _iomodule.c (#103618)
This commit is contained in:
parent
700ec657c8
commit
ffdbfe1976
1 changed files with 3 additions and 2 deletions
|
@ -616,8 +616,9 @@ iomodule_clear(PyObject *mod) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
iomodule_free(PyObject *mod) {
|
iomodule_free(void *mod)
|
||||||
iomodule_clear(mod);
|
{
|
||||||
|
(void)iomodule_clear((PyObject *)mod);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue