Frédéric Delanoy : windowscodecs: Use BOOL type where appropriate.
Module: wine Branch: master Commit: 2413841ecb8c845591e0c8173cd22a724dd82bde URL: http://source.winehq.org/git/wine.git/?a=commit;h=2413841ecb8c845591e0c8173c... Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com> Date: Wed Sep 25 15:01:44 2013 +0200 windowscodecs: Use BOOL type where appropriate. --- dlls/windowscodecs/icoformat.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/windowscodecs/icoformat.c b/dlls/windowscodecs/icoformat.c index d245031..682f5f5 100644 --- a/dlls/windowscodecs/icoformat.c +++ b/dlls/windowscodecs/icoformat.c @@ -232,7 +232,7 @@ static HRESULT ReadIcoDib(IStream *stream, IcoFrameDecode *result) IWICBitmapFrameDecode *framedecode; WICPixelFormatGUID pixelformat; IWICBitmapSource *source; - int has_alpha=FALSE; /* if TRUE, alpha data might be in the image data */ + BOOL has_alpha=FALSE; /* if TRUE, alpha data might be in the image data */ WICRect rc; hr = IcoDibDecoder_CreateInstance(&bmp_decoder);
participants (1)
-
Alexandre Julliard