[PATCH] ntdll/tests: Fix the speilling of an ok() message.

Francois Gouget fgouget at free.fr
Thu May 6 12:14:49 CDT 2021


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/ntdll/tests/om.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/tests/om.c b/dlls/ntdll/tests/om.c
index 7d9ca47be12..fb7d48e7fe1 100644
--- a/dlls/ntdll/tests/om.c
+++ b/dlls/ntdll/tests/om.c
@@ -2593,7 +2593,7 @@ static void test_get_next_thread(void)
     thread = CreateThread( NULL, 0, test_get_next_thread_proc, event, 0, &thread_id );
 
     status = pNtGetNextThread(hprocess, NULL, THREAD_QUERY_LIMITED_INFORMATION, OBJ_INHERIT, 0, NULL);
-    ok(status == STATUS_ACCESS_VIOLATION, "Got unexected status %#x.\n", status);
+    ok(status == STATUS_ACCESS_VIOLATION, "Got unexpected status %#x.\n", status);
 
     found = FALSE;
     prev = NULL;
-- 
2.20.1




More information about the wine-devel mailing list