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

Alexandre Julliard julliard at winehq.org
Mon Dec 13 10:43:18 CST 2010


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Sat Dec 11 14:25:04 2010 +0100

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

---

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

diff --git a/dlls/msvcrt/tests/printf.c b/dlls/msvcrt/tests/printf.c
index 3d61f3d..87efd16 100644
--- a/dlls/msvcrt/tests/printf.c
+++ b/dlls/msvcrt/tests/printf.c
@@ -809,7 +809,7 @@ static void test_xcvt(void)
         for( i = 0; strcmp( test_cvt_testcases[i].expstr_e, "END"); i++){
             decpt = sign = 100;
             err = p__ecvt_s(str, 1024, test_cvt_testcases[i].value, test_cvt_testcases[i].nrdigits, &decpt, &sign);
-            ok(err == 0, "_ecvt_s() failed with error code %d", err);
+            ok(err == 0, "_ecvt_s() failed with error code %d\n", err);
             ok( 0 == strncmp( str, test_cvt_testcases[i].expstr_e, 15),
                    "_ecvt_s() bad return, got \n'%s' expected \n'%s'\n", str,
                   test_cvt_testcases[i].expstr_e);




More information about the wine-cvs mailing list