gdi32/tests: Small indentation fix.

This commit is contained in:
Francois Gouget 2009-06-15 10:53:05 +02:00 committed by Alexandre Julliard
parent 8396dad5c2
commit 34accb382b
1 changed files with 7 additions and 7 deletions

View File

@ -189,13 +189,13 @@ static void test_ExtCreateRegion(void)
HRGN hrgn;
XFORM xform;
if (0) /* crashes under Win9x */
{
SetLastError(0xdeadbeef);
hrgn = ExtCreateRegion(NULL, 0, NULL);
ok(!hrgn, "ExtCreateRegion should fail\n");
ok(GetLastError() == ERROR_INVALID_PARAMETER, "ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
}
if (0) /* crashes under Win9x */
{
SetLastError(0xdeadbeef);
hrgn = ExtCreateRegion(NULL, 0, NULL);
ok(!hrgn, "ExtCreateRegion should fail\n");
ok(GetLastError() == ERROR_INVALID_PARAMETER, "ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
}
rgn.data.rdh.dwSize = 0;
rgn.data.rdh.iType = 0;