From 99aeee622028ba15dd25d58494058da49e522a44 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 13 Jun 2007 13:18:02 +0200 Subject: [PATCH] gdiplus: Add missing '\n' to ok() calls, Wine traces. --- dlls/gdiplus/pen.c | 2 +- dlls/gdiplus/tests/pen.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/gdiplus/pen.c b/dlls/gdiplus/pen.c index 2128d3b89e8..d0355dbf9e4 100644 --- a/dlls/gdiplus/pen.c +++ b/dlls/gdiplus/pen.c @@ -50,7 +50,7 @@ GpStatus WINGDIPAPI GdipCreatePen1(ARGB color, FLOAT width, GpUnit unit, gp_pen->gdipen = ExtCreatePen(gp_pen->style, (INT) gp_pen->width, &lb, 0, NULL); } else { - FIXME("UnitWorld, UnitPixel only supported units"); + FIXME("UnitWorld, UnitPixel only supported units\n"); return NotImplemented; } diff --git a/dlls/gdiplus/tests/pen.c b/dlls/gdiplus/tests/pen.c index 3615d9a3753..c6e29c9ad34 100644 --- a/dlls/gdiplus/tests/pen.c +++ b/dlls/gdiplus/tests/pen.c @@ -63,7 +63,7 @@ static void test_constructor_destructor(void) status = GdipCreatePen1((ARGB)0xffff00ff, 10.0f, UnitPixel, &pen); expect(Ok, status); - ok(pen != NULL, "Expected pen to be initialized"); + ok(pen != NULL, "Expected pen to be initialized\n"); status = GdipDeletePen(NULL); expect(InvalidParameter, status); -- 2.11.4.GIT