http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbee72d
)
imm32/tests: Don't use a pointer in an ok test.
author
Alexandre Julliard
<julliard@winehq.org>
Thu, 4 Dec 2008 11:13:21 +0000
(12:13 +0100)
committer
Alexandre Julliard
<julliard@winehq.org>
Thu, 4 Dec 2008 11:13:21 +0000
(12:13 +0100)
dlls/imm32/tests/imm32.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/imm32/tests/imm32.c
b/dlls/imm32/tests/imm32.c
index f56437c290b0e732efc92af2e659ece9340424e0..ce736390bbf727a8e5eeee371a2f7ab9f26c4a8a 100644
(file)
--- a/
dlls/imm32/tests/imm32.c
+++ b/
dlls/imm32/tests/imm32.c
@@
-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;