mscms/tests: Fix wrong test for failure.

This commit is contained in:
Paul Vriens 2007-06-22 16:44:54 +02:00 committed by Alexandre Julliard
parent 688623d3cb
commit 761ec5e52b

View file

@ -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;
}