Commit 120e2443 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 1dbc3d09
......@@ -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);
......
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