Francois Gouget : windowscodecs: Add a trailing '\n' to FIXME() traces.

Alexandre Julliard julliard at winehq.org
Tue Jun 30 08:33:30 CDT 2009


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Jun 30 10:23:11 2009 +0200

windowscodecs: Add a trailing '\n' to FIXME() traces.

---

 dlls/windowscodecs/imgfactory.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dlls/windowscodecs/imgfactory.c b/dlls/windowscodecs/imgfactory.c
index 5856661..2edcdcd 100644
--- a/dlls/windowscodecs/imgfactory.c
+++ b/dlls/windowscodecs/imgfactory.c
@@ -147,49 +147,49 @@ static HRESULT WINAPI ImagingFactory_CreatePalette(IWICImagingFactory *iface,
 static HRESULT WINAPI ImagingFactory_CreateFormatConverter(IWICImagingFactory *iface,
     IWICFormatConverter **ppIFormatConverter)
 {
-    FIXME("(%p,%p): stub", iface, ppIFormatConverter);
+    FIXME("(%p,%p): stub\n", iface, ppIFormatConverter);
     return E_NOTIMPL;
 }
 
 static HRESULT WINAPI ImagingFactory_CreateBitmapScaler(IWICImagingFactory *iface,
     IWICBitmapScaler **ppIBitmapScaler)
 {
-    FIXME("(%p,%p): stub", iface, ppIBitmapScaler);
+    FIXME("(%p,%p): stub\n", iface, ppIBitmapScaler);
     return E_NOTIMPL;
 }
 
 static HRESULT WINAPI ImagingFactory_CreateBitmapClipper(IWICImagingFactory *iface,
     IWICBitmapClipper **ppIBitmapClipper)
 {
-    FIXME("(%p,%p): stub", iface, ppIBitmapClipper);
+    FIXME("(%p,%p): stub\n", iface, ppIBitmapClipper);
     return E_NOTIMPL;
 }
 
 static HRESULT WINAPI ImagingFactory_CreateBitmapFlipRotator(IWICImagingFactory *iface,
     IWICBitmapFlipRotator **ppIBitmapFlipRotator)
 {
-    FIXME("(%p,%p): stub", iface, ppIBitmapFlipRotator);
+    FIXME("(%p,%p): stub\n", iface, ppIBitmapFlipRotator);
     return E_NOTIMPL;
 }
 
 static HRESULT WINAPI ImagingFactory_CreateStream(IWICImagingFactory *iface,
     IWICStream **ppIWICStream)
 {
-    FIXME("(%p,%p): stub", iface, ppIWICStream);
+    FIXME("(%p,%p): stub\n", iface, ppIWICStream);
     return E_NOTIMPL;
 }
 
 static HRESULT WINAPI ImagingFactory_CreateColorContext(IWICImagingFactory *iface,
     IWICColorContext **ppIColorContext)
 {
-    FIXME("(%p,%p): stub", iface, ppIColorContext);
+    FIXME("(%p,%p): stub\n", iface, ppIColorContext);
     return E_NOTIMPL;
 }
 
 static HRESULT WINAPI ImagingFactory_CreateColorTransformer(IWICImagingFactory *iface,
     IWICColorTransform **ppIColorTransform)
 {
-    FIXME("(%p,%p): stub", iface, ppIColorTransform);
+    FIXME("(%p,%p): stub\n", iface, ppIColorTransform);
     return E_NOTIMPL;
 }
 




More information about the wine-cvs mailing list