Fix ordering of variables reported in CxbxRtlReallocDebug()

This commit is contained in:
Echelon9 2012-10-08 00:38:25 +11:00
parent b3463985b5
commit 5b1d969547
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ void *CxbxRtlReallocDebug(HANDLE Heap,
" File: %s\n"
" Line: %d\n",
pRealloc->pMem,
pRealloc->pFile, pRealloc->Size, pRealloc->Line,
pRealloc->Size, pRealloc->pFile, pRealloc->Line,
Bytes, pFile, Line);
}
void *pNewMem = NtDll::RtlReAllocateHeap(Heap, Flags, GetMemStart(pRealloc), Bytes + 2 * sizeof(MEMORY_GUARD));