Commit 9e5367db authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

winedbg: Use BOOL type where appropriate.

parent 5181b1c4
...@@ -642,7 +642,8 @@ BOOL symbol_get_line(const char* filename, const char* name, ...@@ -642,7 +642,8 @@ BOOL symbol_get_line(const char* filename, const char* name,
struct sgv_data sgv; struct sgv_data sgv;
char buffer[512]; char buffer[512];
DWORD opt, disp; DWORD opt, disp;
unsigned i, found = FALSE; unsigned i;
BOOL found = FALSE;
IMAGEHLP_LINE64 il; IMAGEHLP_LINE64 il;
sgv.num = 0; sgv.num = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment