diff options
author | Zackery Spytz <Osmunda46@gmail.com> | 2017-12-19 18:48:13 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2017-12-19 18:48:13 (GMT) |
commit | e40ad7965331a3d2d43791f4df71acac9bcb3b1c (patch) | |
tree | a7a4dc0db1b3a557930bc46967047661c0db56b4 /Modules | |
parent | c5ae169e1b73315672770517bf51cf8464286c76 (diff) | |
download | cpython-e40ad7965331a3d2d43791f4df71acac9bcb3b1c.zip cpython-e40ad7965331a3d2d43791f4df71acac9bcb3b1c.tar.gz cpython-e40ad7965331a3d2d43791f4df71acac9bcb3b1c.tar.bz2 |
Fix GCC warning in _asynciomodule.c (#4928)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_asynciomodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c index 33ae067..f52297d 100644 --- a/Modules/_asynciomodule.c +++ b/Modules/_asynciomodule.c @@ -3023,7 +3023,7 @@ _asyncio__leave_task_impl(PyObject *module, PyObject *loop, PyObject *task) static void -module_free_freelists() +module_free_freelists(void) { PyObject *next; PyObject *current; |