From: Pablo Galindo Date: Mon, 21 Sep 2020 10:57:22 +0000 (+0100) Subject: Fix a compiler warning in pycore_pylifecycle.h (GH-22331) X-Git-Tag: v3.9.1rc1~231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=724df8325d5fffc953280363c28ed84d5a7f3008;p=thirdparty%2FPython%2Fcpython.git Fix a compiler warning in pycore_pylifecycle.h (GH-22331) --- diff --git a/Include/internal/pycore_pylifecycle.h b/Include/internal/pycore_pylifecycle.h index b0adc4562c44..b76bb2c7778a 100644 --- a/Include/internal/pycore_pylifecycle.h +++ b/Include/internal/pycore_pylifecycle.h @@ -82,7 +82,7 @@ extern void _PyFaulthandler_Fini(void); extern void _PyHash_Fini(void); extern void _PyTraceMalloc_Fini(void); extern void _PyWarnings_Fini(PyInterpreterState *interp); -extern void _PyAST_Fini(); +extern void _PyAST_Fini(void); extern PyStatus _PyGILState_Init(PyThreadState *tstate); extern void _PyGILState_Fini(PyThreadState *tstate);