Also removed call to ExAllocatePool from DPRINT1
authorPhillip Susi <phreak@iag.net>
Wed, 28 Mar 2001 04:43:02 +0000 (04:43 +0000)
committerPhillip Susi <phreak@iag.net>
Wed, 28 Mar 2001 04:43:02 +0000 (04:43 +0000)
Why the heck was this in DPRINT1 and not DPRINT?

svn path=/trunk/; revision=1741

reactos/ntoskrnl/include/internal/debug.h

index 13fecb7..a1ae4a6 100644 (file)
@@ -31,7 +31,7 @@
 #define assert(x)
 #endif
 
-#define DPRINT1(args...) do { DbgPrint("(%s:%d) ",__FILE__,__LINE__); DbgPrint(args); ExAllocatePool(NonPagedPool,0); } while(0);
+#define DPRINT1(args...) do { DbgPrint("(%s:%d) ",__FILE__,__LINE__); DbgPrint(args); } while(0);
 #define CHECKPOINT1 do { DbgPrint("%s:%d\n",__FILE__,__LINE__); } while(0);
 
 extern unsigned int old_idt[256][2];