mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Fix definiton of DPRINT1 for non-DBG build.
svn path=/trunk/; revision=16879
This commit is contained in:
parent
e069829247
commit
7559937efb
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@
|
|||
#else
|
||||
|
||||
/* On non-debug builds, we never show these */
|
||||
#define DPRINT1 do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
|
||||
#define DPRINT1(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
|
||||
#define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
|
||||
#define CHECKPOINT1
|
||||
#define CHECKPOINT
|
||||
|
|
Loading…
Reference in a new issue