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

Alexandre Julliard julliard at winehq.org
Fri Oct 4 15:08:40 CDT 2013


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

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Fri Oct  4 11:43:22 2013 +0200

dbghelp: Use BOOL type where appropriate.

---

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

diff --git a/dlls/dbghelp/module.c b/dlls/dbghelp/module.c
index 521cdb3f..38d4a58 100644
--- a/dlls/dbghelp/module.c
+++ b/dlls/dbghelp/module.c
@@ -105,7 +105,7 @@ void module_set_module(struct module* module, const WCHAR* name)
 
 const WCHAR *get_wine_loader_name(void)
 {
-    static const int is_win64 = sizeof(void *) > sizeof(int); /* FIXME: should depend on target process */
+    static const BOOL is_win64 = sizeof(void *) > sizeof(int); /* FIXME: should depend on target process */
     static const WCHAR wineW[] = {'w','i','n','e',0};
     static const WCHAR suffixW[] = {'6','4',0};
     static const WCHAR *loader;




More information about the wine-cvs mailing list