Commit 8b7904d7 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32/tests: Don't check return values inside of if(0) (LLVM/Clang).

parent 27dd864f
......@@ -469,11 +469,11 @@ static void test_HeapQueryInformation(void)
if (0) /* crashes under XP */
{
size = 0;
ret = pHeapQueryInformation(0,
pHeapQueryInformation(0,
HeapCompatibilityInformation,
&info, sizeof(info), &size);
size = 0;
ret = pHeapQueryInformation(GetProcessHeap(),
pHeapQueryInformation(GetProcessHeap(),
HeapCompatibilityInformation,
NULL, sizeof(info), &size);
}
......
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