=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: winedbg: Declare debug channel only when needed (Clang).

Alexandre Julliard julliard at wine.codeweavers.com
Thu Nov 20 09:54:14 CST 2014


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

Author: André Hentschel <nerv at 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);
 




More information about the wine-cvs mailing list