Module: wine Branch: master Commit: cf8efbd252d761551f3c0b91346c11d0ae1a59d5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cf8efbd252d761551f3c0b9134...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Fri Oct 4 11:43:21 2013 +0200
comctl32: Use BOOL type where appropriate.
---
dlls/comctl32/imagelist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index ec8d08a..6461df6 100644 --- a/dlls/comctl32/imagelist.c +++ b/dlls/comctl32/imagelist.c @@ -209,7 +209,7 @@ static void add_dib_bits( HIMAGELIST himl, int pos, int count, int width, int he
for (n = 0; n < count; n++) { - int has_alpha = 0; + BOOL has_alpha = FALSE;
imagelist_point_from_index( himl, pos + n, &pt );