Commit 761ec5e5 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

mscms/tests: Fix wrong test for failure.

parent 688623d3
......@@ -554,9 +554,9 @@ static void check_registry(void)
}
res = RegQueryInfoKeyA(hkIcmKey, NULL, NULL, NULL, NULL, NULL, NULL, &dwValCount, NULL, NULL, NULL, NULL);
if (!res)
if (res)
{
trace("RegQueryInfoKeyA() failed\n");
trace("RegQueryInfoKeyA() failed : %d\n", res);
return;
}
......
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