Commit f7c57363 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent dbaec0a1
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment