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

Francois Gouget fgouget at free.fr
Tue Jun 22 10:49:41 CDT 2010


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

diff --git a/dlls/msvcrt/tests/string.c b/dlls/msvcrt/tests/string.c
index 1a362a1..b70d777 100644
--- a/dlls/msvcrt/tests/string.c
+++ b/dlls/msvcrt/tests/string.c
@@ -975,7 +975,7 @@ static void test__strtoi64(void)
     ok(res == 123, "res != 123\n");
     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
     res = p_strtoi64(blanks, &endpos, 10);
-    ok(res == 12, "res != 12");
+    ok(res == 12, "res != 12\n");
     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
 
-- 
1.7.1




More information about the wine-patches mailing list