mirror of https://github.com/python/cpython
_PyMem_DebugFree(): fix compiler warning on Windows
Don't return a void value.
This commit is contained in:
parent
404cdc5a92
commit
0aed3a4ebc
|
@ -2039,7 +2039,7 @@ static void
|
|||
_PyMem_DebugFree(void *ctx, void *ptr)
|
||||
{
|
||||
_PyMem_DebugCheckGIL();
|
||||
return _PyMem_DebugRawFree(ctx, ptr);
|
||||
_PyMem_DebugRawFree(ctx, ptr);
|
||||
}
|
||||
|
||||
static void *
|
||||
|
|
Loading…
Reference in New Issue