winemac.drv: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Sat Sep 28 01:44:57 CDT 2013


---
 dlls/winemac.drv/image.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/winemac.drv/image.c b/dlls/winemac.drv/image.c
index a39564a..4090350 100644
--- a/dlls/winemac.drv/image.c
+++ b/dlls/winemac.drv/image.c
@@ -58,7 +58,8 @@ CGImageRef create_cgimage_from_icon_bitmaps(HDC hdc, HANDLE icon, HBITMAP hbmCol
                                             unsigned char *mask_bits, int mask_size, int width,
                                             int height, int istep)
 {
-    int i, has_alpha = FALSE;
+    int i;
+    BOOL has_alpha = FALSE;
     DWORD *ptr;
     CGBitmapInfo alpha_format;
     CGColorSpaceRef colorspace;
-- 
1.8.4




More information about the wine-patches mailing list