ntdll/tests: Make sure return value is used (LLVM/Clang).

This commit is contained in:
Austin English 2011-02-09 13:43:54 -08:00 committed by Alexandre Julliard
parent 2ebcaf1a51
commit c549e34255
1 changed files with 1 additions and 0 deletions

View File

@ -637,6 +637,7 @@ static void test_NtDeleteKey(void)
InitializeObjectAttributes(&attr, &winetestpath, 0, 0, 0);
status = pNtOpenKey(&hkey, am, &attr);
ok(status == STATUS_SUCCESS, "NtOpenKey Failed: 0x%08x\n", status);
status = pNtDeleteKey(hkey);
ok(status == STATUS_SUCCESS, "NtDeleteKey Failed: 0x%08x\n", status);