Module: wine Branch: master Commit: 6922075e582f8d0e0420f79165687f26ec633981 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6922075e582f8d0e0420f79165...
Author: Francois Gouget fgouget@free.fr Date: Sun Feb 10 00:30:21 2008 +0100
user32/tests: Add the trailing '\n' to ok() calls.
---
dlls/user32/tests/listbox.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/user32/tests/listbox.c b/dlls/user32/tests/listbox.c index 18b7951..6d0d2c8 100644 --- a/dlls/user32/tests/listbox.c +++ b/dlls/user32/tests/listbox.c @@ -562,7 +562,7 @@ static void test_listbox_LB_DIR() HANDLE file;
file = CreateFileA( "wtest1.tmp.c", FILE_ALL_ACCESS, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL ); - ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d", GetLastError()); + ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d\n", GetLastError()); CloseHandle( file );
/* NOTE: for this test to succeed, there must be no subdirectories @@ -1055,7 +1055,7 @@ static void test_listbox_dlgdir(void) HANDLE file;
file = CreateFileA( "wtest1.tmp.c", FILE_ALL_ACCESS, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL ); - ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d", GetLastError()); + ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d\n", GetLastError()); CloseHandle( file );
/* NOTE: for this test to succeed, there must be no subdirectories