mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:15:58 +00:00
Use C99 syntax instead of C89 syntax because some compilers are not smart enough to detect and remove dead code
svn path=/trunk/; revision=15596
This commit is contained in:
parent
60f7fbe06e
commit
9d3eed8967
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
#include <ddk/ntapi.h>
|
||||
|
||||
#ifdef DBG
|
||||
#define DPRINT(arg) DbgPrint(arg)
|
||||
#define DPRINT(arg) DbgPrint arg;
|
||||
#else
|
||||
#define DPRINT(arg)
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue