From 065a7192946e02c3054f8e194e37fc737a46db63 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Tue, 21 Mar 2023 09:45:32 +0100 Subject: [PATCH] mgw_fsm: use __func__ to mention function name in log line Change-Id: I23050fc5f644340dfbd0323eef6309cff6fc4515 --- src/osmo-hnbgw/mgw_fsm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osmo-hnbgw/mgw_fsm.c b/src/osmo-hnbgw/mgw_fsm.c index eff8e90..2ecd7a5 100644 --- a/src/osmo-hnbgw/mgw_fsm.c +++ b/src/osmo-hnbgw/mgw_fsm.c @@ -738,8 +738,8 @@ int mgw_fsm_handle_rab_ass_resp(struct hnbgw_context_map *map, struct msgb *rana * on the way between RANAP RAB Assignment Request and RANAP RAB Assignment Response. */ LOGP(DMGW, LOGL_ERROR, - "mgw_fsm_handle_rab_ass_resp() rua_ctx_id=%d, no MGW fsm -- sending Iu-Release-Request!\n", - map->rua_ctx_id); + "%s() rua_ctx_id=%d, no MGW fsm -- sending Iu-Release-Request!\n", + __func__, map->rua_ctx_id); /* Send a release request, to make sure that the MSC is aware of the problem. */ tx_release_req(map);