Module: wine Branch: master Commit: 51a4594f960064e012e17039288967d49c444e39 URL: http://source.winehq.org/git/wine.git/?a=commit;h=51a4594f960064e012e1703928...
Author: André Hentschel nerv@dawncrow.de Date: Wed Nov 19 22:09:11 2014 +0100
winedbg: Declare debug channel only when needed (Clang).
---
programs/winedbg/be_i386.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/programs/winedbg/be_i386.c b/programs/winedbg/be_i386.c index 0aafe65..99e3b29 100644 --- a/programs/winedbg/be_i386.c +++ b/programs/winedbg/be_i386.c @@ -21,10 +21,10 @@ #include "debugger.h" #include "wine/debug.h"
-WINE_DEFAULT_DEBUG_CHANNEL(winedbg); - #ifdef __i386__
+WINE_DEFAULT_DEBUG_CHANNEL(winedbg); + /* db_disasm.c */ extern void be_i386_disasm_one_insn(ADDRESS64* addr, int display);