Francois Gouget : kernel32/tests: Add a trailing '\n' to an ok() call.
Module: wine Branch: master Commit: d8914673ba7767577bfcba475648f9b7e68b3bb7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d8914673ba7767577bfcba4756... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Sep 5 13:15:04 2008 +0200 kernel32/tests: Add a trailing '\n' to an ok() call. --- dlls/kernel32/tests/file.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/kernel32/tests/file.c b/dlls/kernel32/tests/file.c index fce3fad..94bc975 100644 --- a/dlls/kernel32/tests/file.c +++ b/dlls/kernel32/tests/file.c @@ -862,7 +862,7 @@ static void test_DeleteFileW( void ) ret = GetTempPathW(MAX_PATH, pathW); if (ret + sizeof(dirW)/sizeof(WCHAR)-1 + sizeof(subdirW)/sizeof(WCHAR)-1 >= MAX_PATH) { - ok(0, "MAX_PATH exceeded in constructing paths"); + ok(0, "MAX_PATH exceeded in constructing paths\n"); return; } lstrcatW(pathW, dirW);
participants (1)
-
Alexandre Julliard