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

This commit is contained in:
Francois Gouget 2007-06-13 13:18:02 +02:00 committed by Alexandre Julliard
parent 9821acf5d2
commit 99aeee6220
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

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