Commit c549e342 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

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

parent 2ebcaf1a
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment