From 5b1d969547252b152641db5535dc4f7e1aa77e95 Mon Sep 17 00:00:00 2001 From: Echelon9 Date: Mon, 8 Oct 2012 00:38:25 +1100 Subject: [PATCH] Fix ordering of variables reported in CxbxRtlReallocDebug() --- src/CxbxKrnl/EmuAlloc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CxbxKrnl/EmuAlloc.cpp b/src/CxbxKrnl/EmuAlloc.cpp index faddb011e..7d059b30e 100644 --- a/src/CxbxKrnl/EmuAlloc.cpp +++ b/src/CxbxKrnl/EmuAlloc.cpp @@ -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));