From eec4d1b4278eb2efa896590f3f2c09510886d963 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sun, 28 Sep 2014 18:28:09 +0000 Subject: [PATCH] [IMM32_WINETEST] * Sync with Wine 1.7.27. CORE-8540 svn path=/trunk/; revision=64372 --- rostests/winetests/imm32/imm32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rostests/winetests/imm32/imm32.c b/rostests/winetests/imm32/imm32.c index 7275fe3038d..4c0a8880fd4 100644 --- a/rostests/winetests/imm32/imm32.c +++ b/rostests/winetests/imm32/imm32.c @@ -753,7 +753,7 @@ static void test_ImmGetIMCLockCount(void) count = ImmGetIMCLockCount(0x00000000); ok(count == 0, "NULL IMC should return 0\n"); ret = GetLastError(); - ok(ret == 0xdeadbeef, "Last Error should remain unchangedi %08x\n",ret); + ok(ret == 0xdeadbeef, "Last Error should remain unchanged: %08x\n",ret); count = ImmGetIMCLockCount(imc); ok(count == 0, "Destroyed IMC should return 0\n"); ret = GetLastError();