imm32/tests: Fix a trailing '\n' in an ok() call.

Francois Gouget fgouget at free.fr
Sat Aug 17 03:28:56 CDT 2013


---
 dlls/imm32/tests/imm32.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c
index 62bdb64..92cbccb 100644
--- a/dlls/imm32/tests/imm32.c
+++ b/dlls/imm32/tests/imm32.c
@@ -698,7 +698,7 @@ static void test_ImmGetIMCLockCount(void)
     count = ImmGetIMCLockCount(imc);
     ok(count == 0, "expect 0, returned %d\n", count);
     ic = ImmLockIMC(imc);
-    ok(ic != NULL, "ImmLockIMC failed\n!");
+    ok(ic != NULL, "ImmLockIMC failed!\n");
     count = ImmGetIMCLockCount(imc);
     ok(count == 1, "expect 1, returned %d\n", count);
     ret = ImmUnlockIMC(imc);
-- 
1.7.10.4




More information about the wine-patches mailing list