From 880e91baf78e77d4e8efccbba3f3a929c3304df3 Mon Sep 17 00:00:00 2001 From: M Starch Date: Tue, 3 Sep 2024 16:51:02 -0700 Subject: [PATCH] Fixing vaargs usahe --- Drv/LinuxGpioDriver/LinuxGpioDriverComponentImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Drv/LinuxGpioDriver/LinuxGpioDriverComponentImpl.cpp b/Drv/LinuxGpioDriver/LinuxGpioDriverComponentImpl.cpp index b76c67b8c9..399c48b0cd 100644 --- a/Drv/LinuxGpioDriver/LinuxGpioDriverComponentImpl.cpp +++ b/Drv/LinuxGpioDriver/LinuxGpioDriverComponentImpl.cpp @@ -28,7 +28,7 @@ #include #include -#define DEBUG_PRINT(...) Fw::Logger::log(##__VA_ARGS__) +#define DEBUG_PRINT(...) Fw::Logger::log(__VA_ARGS__) namespace Drv {