Module: wine Branch: master Commit: c0c38be711e0be844dbae4015328f77a159ccc77 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c0c38be711e0be844dbae40153...
Author: Francois Gouget fgouget@free.fr Date: Mon Dec 8 09:27:40 2008 +0100
gdiplus: Add a trailing '\n' to a Wine trace.
---
dlls/gdiplus/pen.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/pen.c b/dlls/gdiplus/pen.c index f41185a..b2d6dab 100644 --- a/dlls/gdiplus/pen.c +++ b/dlls/gdiplus/pen.c @@ -412,7 +412,7 @@ GpStatus WINGDIPAPI GdipSetPenColor(GpPen *pen, ARGB argb) GpStatus WINGDIPAPI GdipSetPenCompoundArray(GpPen *pen, GDIPCONST REAL *dash, INT count) { - FIXME("(%p, %p, %i): stub", pen, dash, count); + FIXME("(%p, %p, %i): stub\n", pen, dash, count);
if (!pen || !dash || count < 2 || count%2 == 1) return InvalidParameter;