Module: wine Branch: master Commit: 66a95f6d4520b22cc8569ecc96beb8d383964b3c URL: http://source.winehq.org/git/wine.git/?a=commit;h=66a95f6d4520b22cc8569ecc96...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Sat Sep 28 08:44:57 2013 +0200
winemac.drv: Use BOOL type where appropriate.
---
dlls/winemac.drv/image.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
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;