user32/tests: Fix a typo in ok() messages

Andrey Gusev andrey.goosev at gmail.com
Thu Jun 2 15:56:29 CDT 2016


-------------- next part --------------
From d6443b3ff04cf32c3b01499674d202f015bcaa2f Mon Sep 17 00:00:00 2001
Message-Id: <d6443b3ff04cf32c3b01499674d202f015bcaa2f.1464900948.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Thu, 2 Jun 2016 23:55:32 +0300
Subject: [PATCH] user32/tests: Fix a typo in ok() messages

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/user32/tests/msg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c
index e39f8a1..52cf901 100644
--- a/dlls/user32/tests/msg.c
+++ b/dlls/user32/tests/msg.c
@@ -7457,7 +7457,7 @@ static void test_interthread_messages(void)
 
     handle = (void*)0xdeadbeef;
     ret = pGetCurrentActCtx(&handle);
-    ok(ret, "GetCurentActCtx failed: %u\n", GetLastError());
+    ok(ret, "GetCurrentActCtx failed: %u\n", GetLastError());
     ok(handle == 0, "active context %p\n", handle);
 
     wnd_event.start_event = CreateEventW(NULL, 0, 0, NULL);
@@ -7472,7 +7472,7 @@ static void test_interthread_messages(void)
 
     handle = 0;
     ret = pGetCurrentActCtx(&handle);
-    ok(ret, "GetCurentActCtx failed: %u\n", GetLastError());
+    ok(ret, "GetCurrentActCtx failed: %u\n", GetLastError());
     ok(handle != 0, "active context %p\n", handle);
     pReleaseActCtx(handle);
 
-- 
2.5.5



More information about the wine-patches mailing list