aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-08-08 15:07:35 +0200
committerpespin <pespin@sysmocom.de>2022-08-09 08:38:51 +0000
commit742bb99ed9dc7755466db6c59f43953f570ddab9 (patch)
tree0107244877c5758454286d753ce63be617933ac9 /src/utils
parent842592c5296c77e68d8722f602ab16769551583d (diff)
Use libosmocore available API to get value_list
This API has been available since 1.0.0, and we actually require libosmocore >= 1.7.0 nowadays, so it's totally fine using the libosmocore API and drops the local duplicate. Change-Id: I95c59b31cf1b08e1d513b589ef386d2dd55f09a2
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/meas_json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/meas_json.c b/src/utils/meas_json.c
index 00b90e8f5..953b114f3 100644
--- a/src/utils/meas_json.c
+++ b/src/utils/meas_json.c
@@ -99,7 +99,7 @@ static void print_chan_info_json(struct meas_feed_meas *mfm)
{
printf("\"lchan_type\":\"%s\", \"pchan_type\":\"%s\", "
"\"bts_nr\":%d, \"trx_nr\":%d, \"ts_nr\":%d, \"ss_nr\":%d",
- gsm_lchant_name(mfm->lchan_type), gsm_pchan_name(mfm->pchan_type),
+ gsm_chan_t_name(mfm->lchan_type), gsm_pchan_name(mfm->pchan_type),
mfm->bts_nr, mfm->trx_nr, mfm->ts_nr, mfm->ss_nr);
}