Andrew Talbot : ntdll: Qualify use of WINE_DEFAULT_DEBUG_CHANNEL.
Module: wine Branch: master Commit: 70bfd0f6c0810662876a2a8e520ee06044e6ebae URL: http://source.winehq.org/git/wine.git/?a=commit;h=70bfd0f6c0810662876a2a8e52... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Sat Dec 30 21:08:00 2006 +0000 ntdll: Qualify use of WINE_DEFAULT_DEBUG_CHANNEL. --- dlls/ntdll/relay.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/ntdll/relay.c b/dlls/ntdll/relay.c index fa7cc12..9872474 100644 --- a/dlls/ntdll/relay.c +++ b/dlls/ntdll/relay.c @@ -36,11 +36,12 @@ #include "wine/debug.h" WINE_DEFAULT_DEBUG_CHANNEL(relay); -WINE_DECLARE_DEBUG_CHANNEL(snoop); -WINE_DECLARE_DEBUG_CHANNEL(seh); #ifdef __i386__ +WINE_DECLARE_DEBUG_CHANNEL(snoop); +WINE_DECLARE_DEBUG_CHANNEL(seh); + struct relay_descr /* descriptor for a module */ { void *magic; /* signature */
participants (1)
-
Alexandre Julliard