From 06e34ffc128d9319bde2089ccae506aeee11379c Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 12 Aug 2003 20:34:06 +0000 Subject: [PATCH] Minor tracing fix. --- dlls/ntdll/heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/heap.c b/dlls/ntdll/heap.c index e648cc65d4..c377819949 100644 --- a/dlls/ntdll/heap.c +++ b/dlls/ntdll/heap.c @@ -209,7 +209,7 @@ void HEAP_Dump( HEAP *heap ) DPRINTF( "\nFree lists:\n Block Stat Size Id\n" ); for (i = 0; i < HEAP_NB_FREE_LISTS; i++) DPRINTF( "%08lx free %08lx prev=%08lx next=%08lx\n", - (DWORD)&heap->freeList[i].arena, heap->freeList[i].arena.size, + (DWORD)&heap->freeList[i].arena, heap->freeList[i].size, (DWORD)heap->freeList[i].arena.prev, (DWORD)heap->freeList[i].arena.next ); -- 2.32.0.93.g670b81a890