ucrtbase/tests: Add a trailing linefeed to 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:15 +02:00 committed by Alexandre Julliard
parent 0e87427500
commit d5fa1d9bfc
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ START_TEST(thread)
test_thread_library_reference(thread_dll, use_beginthreadex, thread_exit_endthreadex);
ret = DeleteFileA(thread_dll);
ok(ret, "Failed to remove the test dll, err: %u", GetLastError());
ok(ret, "Failed to remove the test dll, err: %u\n", GetLastError());
test_thread_invalid_params();
}