Skip to content

Commit d636089

Browse files
pablogsalambv
authored andcommitted
Fix a compiler warning in pycore_pylifecycle.h (GH-22331)
1 parent df71b65 commit d636089

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/internal/pycore_pylifecycle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ extern void _PyFaulthandler_Fini(void);
8282
extern void _PyHash_Fini(void);
8383
extern void _PyTraceMalloc_Fini(void);
8484
extern void _PyWarnings_Fini(PyInterpreterState *interp);
85-
extern void _PyAST_Fini();
85+
extern void _PyAST_Fini(void);
8686

8787
extern PyStatus _PyGILState_Init(PyThreadState *tstate);
8888
extern void _PyGILState_Fini(PyThreadState *tstate);

0 commit comments

Comments
 (0)