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

Alexandre Julliard julliard at winehq.org
Mon Jan 6 14:47:13 CST 2014


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

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Sat Jan  4 15:48:21 2014 +0100

gdi32: Use BOOL type where appropriate.

---

 dlls/gdi32/region.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/gdi32/region.c b/dlls/gdi32/region.c
index 062272d..2632de5 100644
--- a/dlls/gdi32/region.c
+++ b/dlls/gdi32/region.c
@@ -2523,7 +2523,7 @@ static void REGION_loadAET( struct list *AET, struct list *ETEs )
 static void REGION_computeWAET( struct list *AET, struct list *WETE )
 {
     struct edge_table_entry *active;
-    int inside = 1;
+    BOOL inside = TRUE;
     int isInside = 0;
 
     list_init( WETE );




More information about the wine-cvs mailing list