Module: wine Branch: master Commit: a66af35ab995683d879cc59f6a1831c27b874090 URL: https://source.winehq.org/git/wine.git/?a=commit;h=a66af35ab995683d879cc59f6...
Author: Francois Gouget fgouget@free.fr Date: Mon Apr 30 04:31:51 2018 +0200
user32/tests: Add a trailing '\n' to an ok() call.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/user32/tests/win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c index 6030121..ac706aa 100644 --- a/dlls/user32/tests/win.c +++ b/dlls/user32/tests/win.c @@ -10698,7 +10698,7 @@ static void test_destroy_quit(void) if (done) break; }
- ok( WaitForSingleObject( thread1, 10000 ) != WAIT_TIMEOUT, "timeout" ); + ok( WaitForSingleObject( thread1, 10000 ) != WAIT_TIMEOUT, "timeout\n" ); ok( !IsWindow( destroy_data.thread1_wnd ), "window not destroyed\n" ); CloseHandle( thread1 ); }