advapi32/tests: Replace an '#if 0' with an 'if (0)'.

This commit is contained in:
Francois Gouget 2006-12-14 18:10:15 +01:00 committed by Alexandre Julliard
parent 94c88f1cfa
commit cbec9337e6
1 changed files with 4 additions and 3 deletions

View File

@ -110,11 +110,12 @@ static void test_SystemFunction007(void)
0x56, 0xeb, 0x6b, 0x96, 0x55, 0xec, 0xcf, 0x0a };
WCHAR szFoo[] = {'f','o','o',0 };
#if 0
/* crashes */
if (0)
{
/* crashes on Windows */
r = pSystemFunction007(NULL, NULL);
ok( r == STATUS_UNSUCCESSFUL, "wrong error code\n");
#endif
}
str.Buffer = szFoo;
str.Length = 4*sizeof(WCHAR);