Module: wine Branch: master Commit: 99aeee622028ba15dd25d58494058da49e522a44 URL: http://source.winehq.org/git/wine.git/?a=commit;h=99aeee622028ba15dd25d58494...
Author: Francois Gouget fgouget@free.fr Date: Wed Jun 13 13:18:02 2007 +0200
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 2128d3b..d0355db 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 3615d9a..c6e29c9 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);