From 2d5de4bc0f760b62dac7c1648409d399af7ca73b Mon Sep 17 00:00:00 2001 From: jgromes Date: Thu, 12 Sep 2024 07:01:56 +0200 Subject: [PATCH] [APRS] Fix debug print --- src/protocols/APRS/APRS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocols/APRS/APRS.cpp b/src/protocols/APRS/APRS.cpp index b1f9b5a8..a5866ac6 100644 --- a/src/protocols/APRS/APRS.cpp +++ b/src/protocols/APRS/APRS.cpp @@ -76,7 +76,7 @@ int16_t APRSClient::sendPosition(char* destCallsign, uint8_t destSSID, char* lat // send the frame info[len] = '\0'; - RADIOLIB_DEBUG_PROTOCOL_PRINTLN("APRS Info: %s, length = %d", (void*)info, info, (int)len); + RADIOLIB_DEBUG_PROTOCOL_PRINTLN("APRS Info: %s, length = %d", info, (int)len); int16_t state = sendFrame(destCallsign, destSSID, info); #if !RADIOLIB_STATIC_ONLY delete[] info;