Francois Gouget : imm32/tests: Fix a trailing '\n' in an ok() call.
Module: wine Branch: master Commit: 120e24431d6a78a595c0e1e293f760712e71046a URL: http://source.winehq.org/git/wine.git/?a=commit;h=120e24431d6a78a595c0e1e293... Author: Francois Gouget <fgouget(a)free.fr> Date: Sat Aug 17 10:28:56 2013 +0200 imm32/tests: Fix a trailing '\n' in an ok() call. --- dlls/imm32/tests/imm32.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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);
participants (1)
-
Alexandre Julliard