From 8e197fc35b4b0ed6a38f21de7ca754f959b84a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Mon, 6 Mar 2023 12:50:05 +0100 Subject: [PATCH] fixes #2327 --- src/mesh/RadioInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/RadioInterface.cpp b/src/mesh/RadioInterface.cpp index 118aab5a6..f211bb7df 100644 --- a/src/mesh/RadioInterface.cpp +++ b/src/mesh/RadioInterface.cpp @@ -281,7 +281,7 @@ void printPacket(const char *prefix, const meshtastic_MeshPacket *p) if (p->priority != 0) out += DEBUG_PORT.mt_sprintf(" priority=%d", p->priority); - out + ")\n"; + out += ")\n"; LOG_DEBUG("%s", out.c_str()); }