wintrust: Fix typo.

This commit is contained in:
Juan Lang 2009-02-12 09:23:40 -08:00 committed by Alexandre Julliard
parent 5d5f7a41f0
commit 6407fb7036
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ static void test_RegPolicyFlags(void)
size = sizeof(flags1);
r = RegQueryValueExA(key, State, NULL, NULL, (LPBYTE)&flags1, &size);
ok(!r || r == ERROR_FILE_NOT_FOUND, "RegQueryValueEx failed: %d\n", r);
if (r)
if (!r)
ok(flags1 == flags2, "Got %08x flags instead of %08x\n", flags1, flags2);
flags3 = flags2 | 1;