gdiplus: Add/fix the trailing '\n' to Wine traces. (try 2)

Francois Gouget fgouget at free.fr
Thu Jul 10 05:33:26 CDT 2008


---

This time removing the bogus trailing parenthesis.


 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;
 }
-- 
1.5.6




More information about the wine-patches mailing list