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