laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-mgw/+/29320 )
Change subject: Make osmo_mgcpc_ep_fsm_pre_term() static ......................................................................
Make osmo_mgcpc_ep_fsm_pre_term() static
This is a call-back for FSM pre-termination and it should not be publicly exported.
Change-Id: Iaa44906baa201571f6bc3192bd3caacb272fec0b --- M src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/20/29320/1
diff --git a/src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c b/src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c index ea4c378..b8f09d5 100644 --- a/src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c +++ b/src/libosmo-mgcp-client/mgcp_client_endpoint_fsm.c @@ -997,7 +997,7 @@ return 0; }
-void osmo_mgcpc_ep_fsm_pre_term(struct osmo_fsm_inst *fi, enum osmo_fsm_term_cause cause) +static void osmo_mgcpc_ep_fsm_pre_term(struct osmo_fsm_inst *fi, enum osmo_fsm_term_cause cause) { int i; struct osmo_mgcpc_ep *ep = osmo_mgcpc_ep_fi_mgwep(fi);