From 66a04a83a131494f23ca24509d05e20b486ce6cb Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 30 Jun 2009 10:23:11 +0200 Subject: [PATCH] windowscodecs: Add a trailing '\n' to FIXME() traces. --- dlls/windowscodecs/imgfactory.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dlls/windowscodecs/imgfactory.c b/dlls/windowscodecs/imgfactory.c index 58566618645..2edcdcde508 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; } -- 2.11.4.GIT