Frédéric Delanoy : windowscodecs/tests: Use BOOL type where appropriate.
Module: wine Branch: master Commit: 919e8236ee0fd7ff04c6d98bb39554f8b4681d26 URL: http://source.winehq.org/git/wine.git/?a=commit;h=919e8236ee0fd7ff04c6d98bb3... Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com> Date: Sat Oct 5 08:53:54 2013 +0200 windowscodecs/tests: Use BOOL type where appropriate. --- dlls/windowscodecs/tests/info.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/windowscodecs/tests/info.c b/dlls/windowscodecs/tests/info.c index d9159b1..da8d6b8 100644 --- a/dlls/windowscodecs/tests/info.c +++ b/dlls/windowscodecs/tests/info.c @@ -63,7 +63,7 @@ static HRESULT get_component_info(const GUID *clsid, IWICComponentInfo **result) return hr; } -static int is_pixelformat(GUID *format) +static BOOL is_pixelformat(GUID *format) { IWICComponentInfo *info; HRESULT hr;
participants (1)
-
Alexandre Julliard