commit | c61ec7e6b892313cd3ecbaf02227bacb9d5ddaa2 | [log] [tgz] |
---|---|---|
author | Brandt Bucher <brandt@python.org> | Wed Mar 03 21:53:59 2021 -0800 |
committer | GitHub <noreply@github.com> | Wed Mar 03 21:53:59 2021 -0800 |
tree | 383d7e0090303a73d9a047bb413c38c8bed31f3a | |
parent | 131d5516409791b170b09a6ef8ed8463c9b09015 [diff] [blame] |
bpo-43394: Fix -Wstrict-prototypes warnings (GH-24737)
diff --git a/Modules/_zoneinfo.c b/Modules/_zoneinfo.c index 4726b82..755442f 100644 --- a/Modules/_zoneinfo.c +++ b/Modules/_zoneinfo.c
@@ -2608,7 +2608,7 @@ static PyTypeObject PyZoneInfo_ZoneInfoType = { // Specify the _zoneinfo module static PyMethodDef module_methods[] = {{NULL, NULL}}; static void -module_free() +module_free(void) { Py_XDECREF(_tzpath_find_tzfile); _tzpath_find_tzfile = NULL;