- removed an obsolete call to ExAllocatePool in CHECKPOINT

svn path=/trunk/; revision=9461
This commit is contained in:
Hartmut Birr 2004-05-22 08:12:49 +00:00
parent a31ff7a76b
commit a4931b6ee8

View file

@ -99,7 +99,7 @@
#else
#define DPRINT DbgPrint("(%s:%d) ",__FILE__,__LINE__); DbgPrint
#endif
#define CHECKPOINT do { DbgPrint("%s:%d\n",__FILE__,__LINE__); ExAllocatePool(NonPagedPool,0); } while(0)
#define CHECKPOINT do { DbgPrint("%s:%d\n",__FILE__,__LINE__); } while(0)
#else /* NDEBUG */
#ifdef __GNUC__ /* using GNU C/C99 macro ellipsis */
#define DPRINT(args...)