diff options
author | Christian Heimes <christian@python.org> | 2021-11-24 19:01:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 19:01:39 (GMT) |
commit | 5c4b19ec49a5fbad65a682225f7cfed8b78f2a2f (patch) | |
tree | 35fbd1e1a2322dff1b39554fd0d5220761cf824a | |
parent | abfc794bbf2c6a0939ddd81b6e700c46944ba87a (diff) | |
download | cpython-5c4b19ec49a5fbad65a682225f7cfed8b78f2a2f.zip cpython-5c4b19ec49a5fbad65a682225f7cfed8b78f2a2f.tar.gz cpython-5c4b19ec49a5fbad65a682225f7cfed8b78f2a2f.tar.bz2 |
bpo-45020: Fix strict-prototypes warning (GH-29755)
-rw-r--r-- | Python/import.c | 2 | ||||
-rw-r--r-- | Tools/scripts/deepfreeze.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c index 225fbf4..51b779c 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 e51a408..46776c7 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__) |