From 1c54c1d1c66a75e182ae0e3dcf91c2b83b535d53 Mon Sep 17 00:00:00 2001 From: jgromes Date: Tue, 30 Nov 2021 23:19:17 +0100 Subject: [PATCH] Fixed incorrect debug macro called (#407) --- src/BuildOpt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BuildOpt.h b/src/BuildOpt.h index 6cf6c18b..8750c723 100644 --- a/src/BuildOpt.h +++ b/src/BuildOpt.h @@ -876,7 +876,7 @@ #if defined(RADIOLIB_VERBOSE) #define RADIOLIB_VERBOSE_PRINT(...) RADIOLIB_DEBUG_PRINT(__VA_ARGS__) - #define RADIOLIB_VERBOSE_PRINTLN(...) RADIOLIB_DEBUG_PRINT(__VA_ARGS__) + #define RADIOLIB_VERBOSE_PRINTLN(...) RADIOLIB_DEBUG_PRINTLN(__VA_ARGS__) #else #define RADIOLIB_VERBOSE_PRINT(...) {} #define RADIOLIB_VERBOSE_PRINTLN(...) {}