From 4003936da580faba038d093dc518f5dd8e800ac1 Mon Sep 17 00:00:00 2001 From: Xin Zhe Khooi <khooixz@comp.nus.edu.sg> Date: Sun, 18 Feb 2024 02:57:09 +0000 Subject: [PATCH] telnetsrv_rrc: resolve warning --- common/utils/telnetsrv/telnetsrv_rrc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/utils/telnetsrv/telnetsrv_rrc.c b/common/utils/telnetsrv/telnetsrv_rrc.c index ad5ca94c43d..3e879aa9880 100644 --- a/common/utils/telnetsrv/telnetsrv_rrc.c +++ b/common/utils/telnetsrv/telnetsrv_rrc.c @@ -65,8 +65,8 @@ int rrc_gNB_trigger_release(char *buf, int debug, telnet_printfunc_t prnt) { /* get RRC and UE */ rrc_gNB_ue_context_t *ue_context_p = rrc_gNB_get_ue_context(rrc, ue_id); if (!ue_context_p) { - prnt("Could not find UE context associated with UE ID %u\n", ue_id); - LOG_E(RRC, "Could not find UE context associated with UE ID %u\n", ue_id); + prnt("Could not find UE context associated with UE ID %lu\n", ue_id); + LOG_E(RRC, "Could not find UE context associated with UE ID %lu\n", ue_id); return -1; } gNB_RRC_UE_t *UE = &ue_context_p->ue_context; -- GitLab