From aaceb029eb7188b1f13e3ad9bf7e3c03506582ef Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Wed, 19 Jan 2022 12:26:18 +0100 Subject: [PATCH] rlc_am_lte: fix wrong fmt string --- lib/src/rlc/rlc_am_lte.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/rlc/rlc_am_lte.cc b/lib/src/rlc/rlc_am_lte.cc index fba47da00..1b3218c84 100644 --- a/lib/src/rlc/rlc_am_lte.cc +++ b/lib/src/rlc/rlc_am_lte.cc @@ -1391,7 +1391,7 @@ void rlc_am_lte_rx::handle_data_pdu_segment(uint8_t* payload, uint32_t nof_bytes // Check inside rx window if (!inside_rx_window(header.sn)) { if (header.p) { - logger.info("%s Status packet requested through polling bit"); + logger.info("Status packet requested through polling bit"); do_status = true; } logger.info("SN=%d outside rx window [%d:%d] - discarding", header.sn, vr_r, vr_mr);