winecfg: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Tue Oct 8 17:06:18 CDT 2013


---
 programs/winecfg/winecfg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/programs/winecfg/winecfg.c b/programs/winecfg/winecfg.c
index ea116e8..3fbfedf 100644
--- a/programs/winecfg/winecfg.c
+++ b/programs/winecfg/winecfg.c
@@ -43,7 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(winecfg);
 #include "winecfg.h"
 #include "resource.h"
 
-static const int is_win64 = (sizeof(void *) > sizeof(int));
+static const BOOL is_win64 = (sizeof(void *) > sizeof(int));
 
 HKEY config_key = NULL;
 HMENU hPopupMenus = 0;
-- 
1.8.4




More information about the wine-patches mailing list