From 531305e1048d442cb26fc43545de1b9a69f356b1 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 24 Dec 2022 08:45:56 +0100 Subject: [PATCH] Logging fix --- src/driver/logging.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/logging.hpp b/src/driver/logging.hpp index e13d1d4..77853bc 100644 --- a/src/driver/logging.hpp +++ b/src/driver/logging.hpp @@ -3,5 +3,5 @@ #ifdef NDEBUG__ #define debug_log(...) #else -#define debug_log(msg, ...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "[MOMO] " msg, __VA_ARGS__) +#define debug_log(...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "[MOMO] " __VA_ARGS__) #endif