- Fix the stupid mess we created when making this from the cmake branch
[reactos.git] / drivers / network / tcpip / include / debug.h
index 0e3e409..303d66a 100644 (file)
 #define DEBUG_INFO     0x02000000
 #define DEBUG_ULTRA    0x7FFFFFFF
 
-#define DBG 1
-
 #if DBG
 
 #define REMOVE_PARENS(...) __VA_ARGS__
 #define TI_DbgPrint(_t_, _x_) \
     DbgPrintEx(DPFLTR_TCPIP_ID, (_t_) | DPFLTR_MASK, "(%s:%d) ", __FILE__, __LINE__), \
     DbgPrintEx(DPFLTR_TCPIP_ID, (_t_) | DPFLTR_MASK, REMOVE_PARENS _x_)
-    //DbgPrint(REMOVE_PARENS _x_)
+
 #else /* DBG */
 
 #define TI_DbgPrint(_t_, _x_)