Francois Gouget : user32/tests: Add the trailing '\n' to a couple of ok() calls.

Alexandre Julliard julliard at winehq.org
Wed Mar 5 06:24:20 CST 2008


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Mar  5 12:03:54 2008 +0100

user32/tests: Add the trailing '\n' to a couple of ok() calls.

---

 dlls/user32/tests/resource.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user32/tests/resource.c b/dlls/user32/tests/resource.c
index 0fd77b7..7be82ad 100644
--- a/dlls/user32/tests/resource.c
+++ b/dlls/user32/tests/resource.c
@@ -66,11 +66,11 @@ static void test_LoadStringW(void)
     {
         /* check that calling LoadStringW with buffer = NULL returns zero */
         retvalue = LoadStringW(hInst, 2, NULL, 0);
-        ok(!retvalue, "LoadStringW returned a non-zero value when called with buffer = NULL, retvalue = %d",
+        ok(!retvalue, "LoadStringW returned a non-zero value when called with buffer = NULL, retvalue = %d\n",
             retvalue);
         /* check again, with a different buflen value, that calling LoadStringW with buffer = NULL returns zero */
         retvalue = LoadStringW(hInst, 2, NULL, 128);
-        ok(!retvalue, "LoadStringW returned a non-zero value when called with buffer = NULL, retvalue = %d",
+        ok(!retvalue, "LoadStringW returned a non-zero value when called with buffer = NULL, retvalue = %d\n",
             retvalue);
     }
 }




More information about the wine-cvs mailing list