From 0e35aee19472e8146f255a2e0ca5092c852cae5b Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 6 May 2021 19:47:15 +0200 Subject: [PATCH] rim: Constify param in func Change-Id: I47c471929a62d6a5340ae4a4ca88bd0b758c208d --- src/gprs_bssgp_rim.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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));