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

This commit is contained in:
Alexandre Julliard 2008-12-04 12:13:21 +01:00
parent dbee72d568
commit 7801b692cb
1 changed files with 1 additions and 1 deletions

View File

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