Dump HeapWalk entries

Dimitrie O. Paun dpaun at rogers.com
Wed Mar 2 11:23:24 CST 2005


On Wed, Mar 02, 2005 at 05:52:45PM +0100, Uwe Bonnes wrote:
> +  if ((entry->wFlags & PROCESS_HEAP_ENTRY_BUSY ) 
> +      && (entry->wFlags & PROCESS_HEAP_ENTRY_MOVEABLE)) 
> +    {
> +      /* Treat as block */
> +      DPRINTF( "BLOCK->hMem\t\t:%08lx\n", (DWORD)entry->u.Block.hMem);
> +    }

Please don't introduce _another_ style of brackets, just use the
one that's used in the file. Should be either:

    if (....) {
        ....
    }

or

    if (....)
    {
        ....
    }

-- 
Dimi.



More information about the wine-devel mailing list