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

Francois Gouget fgouget at free.fr
Sat Mar 1 14:13:04 CST 2008


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

diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c
index b5a9138..fa09e09 100644
--- a/dlls/gdi32/tests/font.c
+++ b/dlls/gdi32/tests/font.c
@@ -1849,7 +1849,7 @@ static void test_GdiRealizationInfo(void)
     r = pGdiRealizationInfo(hdc, info);
     ok(r != 0, "ret 0\n");
     ok(info[0] == 1, "info[0] = %x for the system font\n", info[0]);
-    ok(info[3] == 0xcccccccc, "structure longer than 3 dwords");
+    ok(info[3] == 0xcccccccc, "structure longer than 3 dwords\n");
 
     if (!is_truetype_font_installed("Arial"))
     {
@@ -1868,7 +1868,7 @@ static void test_GdiRealizationInfo(void)
     r = pGdiRealizationInfo(hdc, info);
     ok(r != 0, "ret 0\n");
     ok(info[0] == 3, "info[0] = %x for arial\n", info[0]);
-    ok(info[3] == 0xcccccccc, "structure longer than 3 dwords");
+    ok(info[3] == 0xcccccccc, "structure longer than 3 dwords\n");
 
     DeleteObject(SelectObject(hdc, hfont_old));
 
-- 
1.5.4.1




More information about the wine-patches mailing list