=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: windowscodecs: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Wed Sep 25 14:18:01 CDT 2013


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

Author: Frédéric Delanoy <frederic.delanoy at 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);




More information about the wine-cvs mailing list