Fix _PyTraceMalloc_Fini() definition (GH-16259)

The function return type is void, not int.
This commit is contained in:
Victor Stinner 2019-09-18 14:39:20 +02:00 committed by GitHub
parent 0a963fbc9c
commit d299b8b47d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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(