Kaydet (Commit) 0aed3a4e authored tarafından Victor Stinner's avatar Victor Stinner

_PyMem_DebugFree(): fix compiler warning on Windows

Don't return a void value.
üst 404cdc5a
......@@ -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 *
......
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