winemac.drv: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-09-28 08:44:57 +02:00 committed by Alexandre Julliard
parent 55f31701ab
commit 66a95f6d45
1 changed files with 2 additions and 1 deletions

View File

@ -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;