From eca8ca858234167a243b1a8b2ad5830033e4872f Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Wed, 28 Mar 2001 04:43:02 +0000 Subject: [PATCH] Also removed call to ExAllocatePool from DPRINT1 Why the heck was this in DPRINT1 and not DPRINT? svn path=/trunk/; revision=1741 --- reactos/ntoskrnl/include/internal/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/include/internal/debug.h b/reactos/ntoskrnl/include/internal/debug.h index 13fecb70a1b..a1ae4a6259a 100644 --- a/reactos/ntoskrnl/include/internal/debug.h +++ b/reactos/ntoskrnl/include/internal/debug.h @@ -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];