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

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-05-06 19:14:49 +02:00 committed by Alexandre Julliard
parent d5fa1d9bfc
commit c021db5a41
1 changed files with 1 additions and 1 deletions

View File

@ -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;