From 2b1be3dbcecd7400983d0f17be8e75c645cac246 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Fri, 1 Oct 2021 12:34:05 +0200 Subject: [PATCH] enb,rrc_nr: fix wrong fmt formater --- srsenb/src/stack/rrc/rrc_nr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/stack/rrc/rrc_nr.cc b/srsenb/src/stack/rrc/rrc_nr.cc index 00d2d7ed0..d6385db7e 100644 --- a/srsenb/src/stack/rrc/rrc_nr.cc +++ b/srsenb/src/stack/rrc/rrc_nr.cc @@ -183,7 +183,7 @@ void rrc_nr::rem_user(uint16_t rnti) int rrc_nr::update_user(uint16_t new_rnti, uint16_t old_rnti) { if (new_rnti == old_rnti) { - logger.error("rnti=0x%x received MAC CRNTI CE with same rnti"); + logger.error("rnti=0x%x received MAC CRNTI CE with same rnti", new_rnti); return SRSRAN_ERROR; }