Austin English : kernel32: Fix a compiler warning on non-i386.

Alexandre Julliard julliard at winehq.org
Mon Jan 5 10:24:19 CST 2009


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

Author: Austin English <austinenglish at gmail.com>
Date:   Sun Jan  4 13:24:59 2009 -0600

kernel32: Fix a compiler warning on non-i386.

---

 dlls/kernel32/wowthunk.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/kernel32/wowthunk.c b/dlls/kernel32/wowthunk.c
index e86c582..e7560ec 100644
--- a/dlls/kernel32/wowthunk.c
+++ b/dlls/kernel32/wowthunk.c
@@ -38,8 +38,6 @@
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(thunk);
-WINE_DECLARE_DEBUG_CHANNEL(relay);
-WINE_DECLARE_DEBUG_CHANNEL(snoop);
 
 /*
  * These are the 16-bit side WOW routines.  They reside in wownt16.h
@@ -59,6 +57,9 @@ DWORD WINAPI FreeLibrary32W16(DWORD);
 
 #ifdef __i386__
 
+WINE_DECLARE_DEBUG_CHANNEL(relay);
+WINE_DECLARE_DEBUG_CHANNEL(snoop);
+
 /* symbols exported from relay16.s */
 extern DWORD WINAPI wine_call_to_16( FARPROC16 target, DWORD cbArgs, PEXCEPTION_HANDLER handler );
 extern void WINAPI wine_call_to_16_regs( CONTEXT86 *context, DWORD cbArgs, PEXCEPTION_HANDLER handler );




More information about the wine-cvs mailing list