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

Francois Gouget fgouget at free.fr
Wed Jun 18 11:03:40 CDT 2014


---
 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 c98adf4..48979e9 100644
--- a/dlls/msvcrt/tests/file.c
+++ b/dlls/msvcrt/tests/file.c
@@ -2269,7 +2269,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));
-- 
2.0.0



More information about the wine-patches mailing list