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

Alexandre Julliard julliard at winehq.org
Thu Jul 10 08:58:49 CDT 2008


Module: wine
Branch: master
Commit: f7c5736340f539042ce25769349484e1750cb4b7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f7c5736340f539042ce25769349484e1750cb4b7

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Jul 10 12:33:26 2008 +0200

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 63e314d..e985f29 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 bf2ac35..8fd452a 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;
 }




More information about the wine-cvs mailing list