mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
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:
parent
b20a5f12ed
commit
eca8ca8582
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue