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

Alexandre Julliard julliard at winehq.org
Wed Dec 17 09:39:51 CST 2008


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Dec 17 10:26:25 2008 +0100

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

---

 dlls/msvcrt/tests/file.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcrt/tests/file.c b/dlls/msvcrt/tests/file.c
index 6f3fc85..38f16c1 100644
--- a/dlls/msvcrt/tests/file.c
+++ b/dlls/msvcrt/tests/file.c
@@ -335,7 +335,7 @@ static void test_asciimode2(void)
     fclose(fp);
 
     fp = fopen("ascii2.tst", "rt");
-    ok(getc(fp) == '0', "first char not 0");
+    ok(getc(fp) == '0', "first char not 0\n");
     memset(ibuf, 0, sizeof(ibuf));
     i = fread(ibuf, 1, sizeof(ibuf), fp);
     ok(i == sizeof(ibuf), "fread i %d != sizeof(ibuf) %d\n", i, sizeof(ibuf));




More information about the wine-cvs mailing list