gdiplus: Add a trailing '\n' to a Wine trace.

This commit is contained in:
Francois Gouget 2008-12-08 09:27:40 +01:00 committed by Alexandre Julliard
parent 2c23ad2588
commit c0c38be711
1 changed files with 1 additions and 1 deletions

View File

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