Francois Gouget : msvcrt/tests: Add a trailing '\n' to an ok() call.

Alexandre Julliard julliard at winehq.org
Wed Jun 18 14:31:41 CDT 2014


Module: wine
Branch: master
Commit: eb4d39b9eec312dc880b8d78f17bd27a23c72671
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=eb4d39b9eec312dc880b8d78f17bd27a23c72671

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Jun 18 18:03:40 2014 +0200

msvcrt/tests: Add a trailing '\n' to an ok() call.

---

 dlls/msvcrt/tests/file.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msvcrt/tests/file.c b/dlls/msvcrt/tests/file.c
index 353ebb4..97e70f0 100644
--- a/dlls/msvcrt/tests/file.c
+++ b/dlls/msvcrt/tests/file.c
@@ -2270,7 +2270,7 @@ static void test_write_flush(void)
     ok(file != NULL, "unable to create test file\n");
     iobuf[0] = 0;
     fwrite(iobuf, 1, 1, file); /* needed for wine to init _bufsiz */
-    ok(file->_bufsiz == 4096, "incorrect default buffer size: %d", file->_bufsiz);
+    ok(file->_bufsiz == 4096, "incorrect default buffer size: %d\n", file->_bufsiz);
     test_write_flush_size(file, file->_bufsiz);
     setvbuf(file, iobuf, _IOFBF, sizeof(iobuf));
     test_write_flush_size(file, sizeof(iobuf));




More information about the wine-cvs mailing list