gdiplus: Add/fix the trailing '\n' to Wine traces.
This commit is contained in:
parent
dbaec0a101
commit
f7c5736340
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue