From f7c5736340f539042ce25769349484e1750cb4b7 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 10 Jul 2008 12:33:26 +0200 Subject: [PATCH] gdiplus: Add/fix the trailing '\n' to Wine traces. --- dlls/gdiplus/font.c | 2 +- dlls/gdiplus/image.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/gdiplus/font.c b/dlls/gdiplus/font.c index 63e314d7ad0..e985f290328 100644 --- a/dlls/gdiplus/font.c +++ b/dlls/gdiplus/font.c @@ -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; diff --git a/dlls/gdiplus/image.c b/dlls/gdiplus/image.c index bf2ac35b14f..8fd452a304d 100644 --- a/dlls/gdiplus/image.c +++ b/dlls/gdiplus/image.c @@ -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; }