[EVTLIB] Fix EVTLTRACE(1) macro expansion in MSVC builds

This commit is contained in:
Hermès Bélusca-Maïto
2026-06-28 21:50:21 +02:00
parent c54a9ca090
commit 9de4cd4cf2
+2 -2
View File
@@ -16,9 +16,9 @@
#define NDEBUG
#include <debug.h>
#define EVTLTRACE(...) DPRINT("EvtLib: " __VA_ARGS__)
#define EVTLTRACE(fmt, ...) DPRINT("EvtLib: " fmt, ##__VA_ARGS__)
// Once things become stabilized enough, replace all the EVTLTRACE1 by EVTLTRACE
#define EVTLTRACE1(...) DPRINT1("EvtLib: " __VA_ARGS__)
#define EVTLTRACE1(fmt, ...) DPRINT1("EvtLib: " fmt, ##__VA_ARGS__)
/* GLOBALS *******************************************************************/