aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-12-07 02:43:09 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-12-08 01:38:58 +0100
commitf4bb051458a0c1cb44f53936ef20feb8dd763891 (patch)
tree099f1975be6014ddb661671f8ba35932b13430bb
parente2300f950e5dc2b2ef13ec6fdf99366e344a50f9 (diff)
fix const compiler warning in print_meas_rep()
-rw-r--r--openbsc/src/libbsc/abis_rsl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/libbsc/abis_rsl.c b/openbsc/src/libbsc/abis_rsl.c
index b7f7a75ce..2ac393508 100644
--- a/openbsc/src/libbsc/abis_rsl.c
+++ b/openbsc/src/libbsc/abis_rsl.c
@@ -1318,7 +1318,7 @@ static void print_meas_rep_uni(struct gsm_meas_rep_unidir *mru,
static void print_meas_rep(struct gsm_lchan *lchan, struct gsm_meas_rep *mr)
{
int i;
- char *name = "";
+ const char *name = "";
if (lchan && lchan->conn)
name = subscr_name(lchan->conn->subscr);