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

Andrey Gusev andrey.goosev at gmail.com
Thu Jun 2 15:51:11 CDT 2016


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

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

diff --git a/dlls/kernel32/tests/thread.c b/dlls/kernel32/tests/thread.c
index e0de3f9..034bdaa 100644
--- a/dlls/kernel32/tests/thread.c
+++ b/dlls/kernel32/tests/thread.c
@@ -1644,7 +1644,7 @@ static void test_thread_actctx(void)
 
     handle = (void*)0xdeadbeef;
     b = pGetCurrentActCtx(&handle);
-    ok(b, "GetCurentActCtx failed: %u\n", GetLastError());
+    ok(b, "GetCurrentActCtx failed: %u\n", GetLastError());
     ok(handle == 0, "active context %p\n", handle);
 
     /* without active context */
@@ -1663,7 +1663,7 @@ static void test_thread_actctx(void)
 
     handle = 0;
     b = pGetCurrentActCtx(&handle);
-    ok(b, "GetCurentActCtx failed: %u\n", GetLastError());
+    ok(b, "GetCurrentActCtx failed: %u\n", GetLastError());
     ok(handle != 0, "no active context\n");
     pReleaseActCtx(handle);
 
-- 
2.5.5



More information about the wine-patches mailing list