aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-05-06 19:47:15 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-05-06 19:47:15 +0200
commit0e35aee19472e8146f255a2e0ca5092c852cae5b (patch)
tree4e1cb8a3c78454234ac70e91b13cb29eec680b6a
parentc6dcfe32f3051ea0d32a10eff8f1004af0114653 (diff)
rim: Constify param in func
-rw-r--r--src/gprs_bssgp_rim.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gprs_bssgp_rim.c b/src/gprs_bssgp_rim.c
index c1f9cec5..e9b9ef8b 100644
--- a/src/gprs_bssgp_rim.c
+++ b/src/gprs_bssgp_rim.c
@@ -97,7 +97,8 @@ static void fill_app_cont_nacc(struct bssgp_ran_inf_app_cont_nacc *app_cont, con
}
/* Format a RAN INFORMATION PDU that contains the requested system information */
-static void format_response_pdu(struct bssgp_ran_information_pdu *resp_pdu, struct bssgp_ran_information_pdu *req_pdu,
+static void format_response_pdu(struct bssgp_ran_information_pdu *resp_pdu,
+ const struct bssgp_ran_information_pdu *req_pdu,
const struct gprs_rlcmac_bts *bts)
{
memset(resp_pdu, 0, sizeof(*resp_pdu));