Update callback.cpp (#2826)

This commit is contained in:
SnapperTT
2022-06-21 14:15:19 +10:00
committed by GitHub
parent a2268940bb
commit f8f394bdf2

View File

@@ -279,8 +279,9 @@ public:
if (kNaturalAlignment >= _align)
{
intptr_t _ptrOld = (intptr_t) _ptr;
void* ptr = ::realloc(_ptr, _size);
bx::debugPrintf("%s(%d): REALLOC %p (old %p) of %d byte(s)\n", _file, _line, ptr, _ptr, _size);
bx::debugPrintf("%s(%d): REALLOC %p (old %p) of %d byte(s)\n", _file, _line, ptr, _ptrOld, _size);
if (NULL == _ptr)
{