gdiplus: Add missing '\n' to ok() calls, Wine traces.

Francois Gouget fgouget at free.fr
Wed Jun 13 06:18:02 CDT 2007


---
 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);
-- 
1.4.4.4




More information about the wine-patches mailing list