From: André Hentschel Subject: winedbg: Declare debug channel only when needed in be_x86_64 (Clang) Message-Id: <546FA0D4.7020902@dawncrow.de> Date: Fri, 21 Nov 2014 21:30:12 +0100 --- programs/winedbg/be_x86_64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/winedbg/be_x86_64.c b/programs/winedbg/be_x86_64.c index 8628025..029f9f1 100644 --- a/programs/winedbg/be_x86_64.c +++ b/programs/winedbg/be_x86_64.c @@ -22,10 +22,10 @@ #include "debugger.h" #include "wine/debug.h" -WINE_DEFAULT_DEBUG_CHANNEL(winedbg); - #if defined(__x86_64__) +WINE_DEFAULT_DEBUG_CHANNEL(winedbg); + #define STEP_FLAG 0x00000100 /* single step flag */ static BOOL be_x86_64_get_addr(HANDLE hThread, const CONTEXT* ctx,