From 5c379c4a989296dde1d07fca6ab5511b6f5f194c Mon Sep 17 00:00:00 2001 From: geeksville Date: Tue, 14 Apr 2020 11:44:35 -0700 Subject: [PATCH] missing newline --- src/MeshService.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/MeshService.cpp b/src/MeshService.cpp index 2af86b4c3..c8e947acf 100644 --- a/src/MeshService.cpp +++ b/src/MeshService.cpp @@ -272,10 +272,9 @@ void MeshService::sendToMesh(MeshPacket *p) // Note: We might return !OK if our fifo was full, at that point the only option we have is to drop it int didSend = sendViaRadio.notifyObservers(p); if (!didSend) { - DEBUG_MSG("No radio was able to send packet, discarding..."); + DEBUG_MSG("No radio was able to send packet, discarding...\n"); releaseToPool(p); } - } }