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

Alexandre Julliard julliard at winehq.org
Mon Oct 14 12:39:27 CDT 2013


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

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

winedbg: Use BOOL type where appropriate.

---

 programs/winedbg/symbol.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/programs/winedbg/symbol.c b/programs/winedbg/symbol.c
index 99b382d..d967eb4 100644
--- a/programs/winedbg/symbol.c
+++ b/programs/winedbg/symbol.c
@@ -642,7 +642,8 @@ BOOL symbol_get_line(const char* filename, const char* name,
     struct sgv_data     sgv;
     char                buffer[512];
     DWORD               opt, disp;
-    unsigned            i, found = FALSE;
+    unsigned            i;
+    BOOL                found = FALSE;
     IMAGEHLP_LINE64     il;
 
     sgv.num        = 0;




More information about the wine-cvs mailing list