summaryrefslogtreecommitdiffstats
path: root/Modules/_zoneinfo.c
diff options
context:
space:
mode:
authorBrandt Bucher <brandt@python.org>2021-03-04 05:53:59 (GMT)
committerGitHub <noreply@github.com>2021-03-04 05:53:59 (GMT)
commitc61ec7e6b892313cd3ecbaf02227bacb9d5ddaa2 (patch)
tree383d7e0090303a73d9a047bb413c38c8bed31f3a /Modules/_zoneinfo.c
parent131d5516409791b170b09a6ef8ed8463c9b09015 (diff)
downloadcpython-c61ec7e6b892313cd3ecbaf02227bacb9d5ddaa2.zip
cpython-c61ec7e6b892313cd3ecbaf02227bacb9d5ddaa2.tar.gz
cpython-c61ec7e6b892313cd3ecbaf02227bacb9d5ddaa2.tar.bz2
bpo-43394: Fix -Wstrict-prototypes warnings (GH-24737)
Diffstat (limited to 'Modules/_zoneinfo.c')
-rw-r--r--Modules/_zoneinfo.c2
1 files changed, 1 insertions, 1 deletions
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;