Vincent Povirk : windowscodecs: Silence a fixme.
Module: wine Branch: master Commit: ed1a03e49463ceed7e75622596ad3407f965e4d9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ed1a03e49463ceed7e75622596... Author: Vincent Povirk <vincent(a)codeweavers.com> Date: Wed Feb 5 15:46:47 2014 -0600 windowscodecs: Silence a fixme. --- dlls/windowscodecs/pngformat.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/windowscodecs/pngformat.c b/dlls/windowscodecs/pngformat.c index 335d754..579989b 100644 --- a/dlls/windowscodecs/pngformat.c +++ b/dlls/windowscodecs/pngformat.c @@ -954,7 +954,9 @@ static HRESULT WINAPI PngDecoder_Block_GetContainerFormat(IWICMetadataBlockReade static HRESULT WINAPI PngDecoder_Block_GetCount(IWICMetadataBlockReader *iface, UINT *pcCount) { - FIXME("%p,%p: stub\n", iface, pcCount); + static int once; + TRACE("%p,%p\n", iface, pcCount); + if (!once++) FIXME("stub\n"); return E_NOTIMPL; }
participants (1)
-
Alexandre Julliard