gdiplus: Add/fix the trailing '\n' to Wine traces.

This commit is contained in:
Francois Gouget 2008-07-10 12:33:26 +02:00 committed by Alexandre Julliard
parent dbaec0a101
commit f7c5736340
2 changed files with 2 additions and 2 deletions

View File

@ -327,7 +327,7 @@ GpStatus WINGDIPAPI GdipGetFontHeightGivenDPI(GDIPCONST GpFont *font, REAL dpi,
{
if (!(font && height)) return InvalidParameter;
FIXME("%p (%s), %f, %p\n)", font,
FIXME("%p (%s), %f, %p\n", font,
debugstr_w(font->lfw.lfFaceName), dpi, height);
return NotImplemented;

View File

@ -244,7 +244,7 @@ GpStatus WINGDIPAPI GdipCloneImage(GpImage *image, GpImage **cloneImage)
{
if (!(image && cloneImage)) return InvalidParameter;
FIXME("stub: %p, %p", image, cloneImage);
FIXME("stub: %p, %p\n", image, cloneImage);
return NotImplemented;
}