From e637e83ec4083cefbcd31c39f4f3f72327ccba71 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sat, 1 Mar 2008 21:13:04 +0100 Subject: [PATCH] gdi32/tests: Add the trailing '\n' to a couple of ok() calls. --- dlls/gdi32/tests/font.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c index ebc3dafcb8f..ce34ab2006e 100644 --- a/dlls/gdi32/tests/font.c +++ b/dlls/gdi32/tests/font.c @@ -1767,7 +1767,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")) { @@ -1786,7 +1786,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));