Module: wine Branch: master Commit: 2f5d04aaeb2197af2cda519fcf692a47ba3f5804 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2f5d04aaeb2197af2cda519fcf...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Thu Jun 2 23:50:20 2016 +0300
kernel32/tests: Fix a typo in ok() messages.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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);