mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
_PyMem_DebugFree(): fix compiler warning on Windows
Don't return a void value.
This commit is contained in:
parent
404cdc5a92
commit
0aed3a4ebc
1 changed files with 1 additions and 1 deletions
|
@ -2039,7 +2039,7 @@ static void
|
||||||
_PyMem_DebugFree(void *ctx, void *ptr)
|
_PyMem_DebugFree(void *ctx, void *ptr)
|
||||||
{
|
{
|
||||||
_PyMem_DebugCheckGIL();
|
_PyMem_DebugCheckGIL();
|
||||||
return _PyMem_DebugRawFree(ctx, ptr);
|
_PyMem_DebugRawFree(ctx, ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void *
|
static void *
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue