commit | e40ad7965331a3d2d43791f4df71acac9bcb3b1c | [log] [tgz] |
---|---|---|
author | Zackery Spytz <Osmunda46@gmail.com> | Tue Dec 19 11:48:13 2017 -0700 |
committer | Yury Selivanov <yury@magic.io> | Tue Dec 19 13:48:13 2017 -0500 |
tree | a7a4dc0db1b3a557930bc46967047661c0db56b4 | |
parent | c5ae169e1b73315672770517bf51cf8464286c76 [diff] |
Fix GCC warning in _asynciomodule.c (#4928)
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 @@ static void -module_free_freelists() +module_free_freelists(void) { PyObject *next; PyObject *current;