aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/utils/meas_json.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/src/utils/meas_json.c')
-rw-r--r--openbsc/src/utils/meas_json.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/src/utils/meas_json.c b/openbsc/src/utils/meas_json.c
index 93203bc7e..51eb6c74e 100644
--- a/openbsc/src/utils/meas_json.c
+++ b/openbsc/src/utils/meas_json.c
@@ -89,7 +89,7 @@ static void print_meas_rep_json(struct gsm_meas_rep *mr)
for (i = 0; i < mr->num_cell; i++) {
struct gsm_meas_rep_cell *mrc = &mr->cell[i];
if (i!=0) printf(", ");
- printf("\"IDX\":%u, \"ARFCN\":%u, \"BSIC\":%u, \"POWER\":%d",
+ printf("{\"IDX\":%u, \"ARFCN\":%u, \"BSIC\":%u, \"POWER\":%d}",
mrc->neigh_idx, mrc->arfcn, mrc->bsic, rxlev2dbm(mrc->rxlev));
}
printf("]");
@@ -151,6 +151,7 @@ static int handle_msg(struct msgb *msg)
default:
break;
}
+ return 0;
}
static int udp_fd_cb(struct osmo_fd *ofd, unsigned int what)