Francois Gouget : ucrtbase/tests: Add a trailing linefeed to an ok() message.
Module: wine Branch: master Commit: d5fa1d9bfc6103780a2e323b4926e58ceb7d27d2 URL: https://source.winehq.org/git/wine.git/?a=commit;h=d5fa1d9bfc6103780a2e323b4... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu May 6 19:14:15 2021 +0200 ucrtbase/tests: Add a trailing linefeed to an ok() message. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ucrtbase/tests/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ucrtbase/tests/thread.c b/dlls/ucrtbase/tests/thread.c index 512d2158b66..8fffbffb38e 100644 --- a/dlls/ucrtbase/tests/thread.c +++ b/dlls/ucrtbase/tests/thread.c @@ -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(); }
participants (1)
-
Alexandre Julliard