Also removed call to ExAllocatePool from DPRINT1

Why the heck was this in DPRINT1 and not DPRINT?

svn path=/trunk/; revision=1741
This commit is contained in:
Phillip Susi 2001-03-28 04:43:02 +00:00
parent b20a5f12ed
commit eca8ca8582

View 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];