From c6ce9930c14adf9d633f7d1259849ba2842ef9a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Rymanowski?= Date: Fri, 22 Mar 2019 14:28:18 +0100 Subject: [PATCH] nimble/l2cap: Minor printout fix --- nimble/host/src/ble_l2cap_coc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimble/host/src/ble_l2cap_coc.c b/nimble/host/src/ble_l2cap_coc.c index 5e5fa8b30..5ed048da2 100644 --- a/nimble/host/src/ble_l2cap_coc.c +++ b/nimble/host/src/ble_l2cap_coc.c @@ -398,7 +398,7 @@ ble_l2cap_coc_continue_tx(struct ble_l2cap_chan *chan) len, tx->credits, OS_MBUF_PKTLEN(tx->sdu)- tx->data_offset ); if (tx->data_offset == OS_MBUF_PKTLEN(tx->sdu)) { - BLE_HS_LOG(DEBUG, "Complete package sent"); + BLE_HS_LOG(DEBUG, "Complete package sent\n"); os_mbuf_free_chain(tx->sdu); tx->sdu = 0; tx->data_offset = 0;