driver.h: DEBUGLOG: output newline at end of message

This commit is contained in:
Bill Zissimopoulos 2015-11-16 11:58:22 -08:00
parent 2b55702d88
commit 20a5e668c6

View File

@ -10,9 +10,9 @@
#include <wdm.h>
#if DBG
#define DEBUGLOG(...) DbgPrint(__FUNCTION__ ": " __VA_ARGS__)
#define DEBUGLOG(fmt, ...) DbgPrint(__FUNCTION__ ": " fmt "\n", __VA_ARGS__)
#else
#define DEBUGLOG(...) ((void)0)
#define DEBUGLOG(fmt, ...) ((void)0)
#endif
#endif