From: Christian Heimes Date: Wed, 24 Nov 2021 19:01:39 +0000 (+0200) Subject: bpo-45020: Fix strict-prototypes warning (GH-29755) X-Git-Tag: v3.11.0a3~138 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5c4b19ec49a5fbad65a682225f7cfed8b78f2a2f;p=thirdparty%2FPython%2Fcpython.git bpo-45020: Fix strict-prototypes warning (GH-29755) --- diff --git a/Python/import.c b/Python/import.c index 225fbf43a305..51b779ca17c5 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1087,7 +1087,7 @@ use_frozen(void) } static PyObject * -list_frozen_module_names() +list_frozen_module_names(void) { PyObject *names = PyList_New(0); if (names == NULL) { diff --git a/Tools/scripts/deepfreeze.py b/Tools/scripts/deepfreeze.py index e51a408ae7f6..46776c768e64 100644 --- a/Tools/scripts/deepfreeze.py +++ b/Tools/scripts/deepfreeze.py @@ -417,7 +417,7 @@ def generate(source: str, filename: str, modname: str, file: TextIO) -> None: printer = Printer(file) printer.generate("toplevel", code) printer.write("") - with printer.block("static void do_patchups()"): + with printer.block("static void do_patchups(void)"): for p in printer.patchups: printer.write(p) here = os.path.dirname(__file__)