Commit 7801b692 authored by Alexandre Julliard's avatar Alexandre Julliard

imm32/tests: Don't use a pointer in an ok test.

parent dbee72d5
......@@ -258,7 +258,7 @@ static void test_ImmSetCompositionString(void)
SetLastError(0xdeadbeef);
imc = ImmGetContext(hwnd);
ok(imc, "ImmGetContext() failed. Last error: %u\n", GetLastError());
ok(imc != 0, "ImmGetContext() failed. Last error: %u\n", GetLastError());
if (!imc)
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