ntdll/tests: Make sure return value is used (LLVM/Clang).
This commit is contained in:
parent
2ebcaf1a51
commit
c549e34255
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue