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

Francois Gouget fgouget at free.fr
Wed Mar 5 05:03:54 CST 2008


---
 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);
     }
 }
-- 
1.5.4.1




More information about the wine-patches mailing list