Module: wine Branch: master Commit: e637e83ec4083cefbcd31c39f4f3f72327ccba71 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e637e83ec4083cefbcd31c39f4...
Author: Francois Gouget fgouget@free.fr Date: Sat Mar 1 21:13:04 2008 +0100
gdi32/tests: Add the trailing '\n' to a couple of ok() calls.
---
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 ebc3daf..ce34ab2 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));