mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-26 04:22:50 -05:00
driver.h: DEBUGLOG: output newline at end of message
This commit is contained in:
@@ -10,9 +10,9 @@
|
|||||||
#include <wdm.h>
|
#include <wdm.h>
|
||||||
|
|
||||||
#if DBG
|
#if DBG
|
||||||
#define DEBUGLOG(...) DbgPrint(__FUNCTION__ ": " __VA_ARGS__)
|
#define DEBUGLOG(fmt, ...) DbgPrint(__FUNCTION__ ": " fmt "\n", __VA_ARGS__)
|
||||||
#else
|
#else
|
||||||
#define DEBUGLOG(...) ((void)0)
|
#define DEBUGLOG(fmt, ...) ((void)0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user