Print args of DPRINT and DPRINT1 too

svn path=/trunk/; revision=7563
This commit is contained in:
Gé van Geldorp 2004-01-11 01:43:18 +00:00
parent 5eef2adaff
commit 98f8c7a3cc

View file

@ -39,7 +39,7 @@
#endif
#endif
#define DPRINT1(args...) DbgPrint("(%s:%d) ",__FILE__,__LINE__), DbgPrint
#define DPRINT1 DbgPrint("(%s:%d) ",__FILE__,__LINE__), DbgPrint
#define CHECKPOINT1 DbgPrint("%s:%d\n",__FILE__,__LINE__);
@ -50,7 +50,7 @@
#endif
#ifndef NDEBUG
#define DPRINT(args...) DbgPrint("(%s:%d) ",__FILE__,__LINE__), DbgPrint
#define DPRINT DbgPrint("(%s:%d) ",__FILE__,__LINE__), DbgPrint
#define CHECKPOINT DbgPrint("%s:%d\n",__FILE__,__LINE__);
#else
#define DPRINT(args...)