kernel32/tests: Fix test for win8 heap layout.

This commit is contained in:
Huw Davies 2014-05-02 09:21:01 +01:00 committed by Alexandre Julliard
parent c1bf61e56c
commit 56019a4dc6
1 changed files with 1 additions and 1 deletions

View File

@ -1127,7 +1127,7 @@ static void test_child_heap( const char *arg )
if (!(heap->flags & HEAP_GROWABLE) || heap->pattern == 0xffeeffee) /* vista layout */
{
ok( heap->flags == 0, "%s: got heap flags %08x expected 0\n", arg, heap->flags );
ok( (heap->flags & ~HEAP_GROWABLE) == 0, "%s: got heap flags %08x\n", arg, heap->flags );
}
else if (heap->pattern == 0xeeeeeeee && heap->flags == 0xeeeeeeee)
{