Commit d299b8b4 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

Fix _PyTraceMalloc_Fini() definition (GH-16259)

The function return type is void, not int.
parent 0a963fbc
......@@ -84,7 +84,7 @@ extern void _PyUnicode_Fini(void);
extern void _PyLong_Fini(void);
extern void _PyFaulthandler_Fini(void);
extern void _PyHash_Fini(void);
extern int _PyTraceMalloc_Fini(void);
extern void _PyTraceMalloc_Fini(void);
extern void _PyWarnings_Fini(PyInterpreterState *interp);
extern void _PyGILState_Init(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment