From 5884627fe685ac72c311ac79b5463cfb27d3e394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Sat, 15 May 2004 07:49:05 +0000 Subject: [PATCH] Silence debug messages svn path=/trunk/; revision=9391 --- reactos/drivers/net/tcpip/tcpip/main.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/reactos/drivers/net/tcpip/tcpip/main.c b/reactos/drivers/net/tcpip/tcpip/main.c index c530e6e74cf..1aec90bb6b4 100644 --- a/reactos/drivers/net/tcpip/tcpip/main.c +++ b/reactos/drivers/net/tcpip/tcpip/main.c @@ -18,9 +18,13 @@ #include #include -#ifdef DBG +#define NDEBUG + +#ifndef NDEBUG DWORD DebugTraceLevel = 0x7fffffff; -#endif /* DBG */ +#else +DWORD DebugTraceLevel = MIN_TRACE; +#endif /* NDEBUG */ PDEVICE_OBJECT TCPDeviceObject = NULL; PDEVICE_OBJECT UDPDeviceObject = NULL;