Minor tracing fix.

oldstable
Alexandre Julliard 2003-08-12 20:34:06 +00:00
parent 6f84b68776
commit 06e34ffc12
1 changed files with 1 additions and 1 deletions

View File

@ -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 );