Commit in reactos/drivers/net/tcpip/tcpip on MAIN | |||
main.c | +6 | -2 | 1.22 -> 1.23 |
Silence debug messages
diff -u -r1.22 -r1.23 --- main.c 8 Mar 2004 10:20:18 -0000 1.22 +++ main.c 15 May 2004 07:49:05 -0000 1.23 @@ -18,9 +18,13 @@
#include <tcp.h> #include <rosrtl/string.h>
-#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;