bpo-45020: Fix strict-prototypes warning (GH-29755)

This commit is contained in:
Christian Heimes 2021-11-24 21:01:39 +02:00 committed by GitHub
parent abfc794bbf
commit 5c4b19ec49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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) {