aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-05-05 16:46:20 +0300
committerVadim Yanitskiy <axilirator@gmail.com>2019-05-05 16:46:20 +0300
commit40b1b4b20d90db4bb3fc89b8c8594aca0c62a9ba (patch)
treefb3256a8de19164e0538b9a853ce6ccef53f8080
parent57e26c3e1654e14bff430b53ca8a2144f378a160 (diff)
common/oml.c: use proper format specifier for uint16_t
-rw-r--r--src/common/oml.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/oml.c b/src/common/oml.c
index f2880780..baf374ae 100644
--- a/src/common/oml.c
+++ b/src/common/oml.c
@@ -590,8 +590,7 @@ static int oml_rx_set_bts_attr(struct gsm_bts *bts, struct msgb *msg)
oml_tx_failure_event_rep(&bts->mo, OSMO_EVT_WARN_SW_WARN,
"Given ARFCN %u is not supported",
arfcn);
- /* FIXME: use proper format specifier for uint16_t */
- LOGPFOH(DOML, LOGL_ERROR, foh, "Given ARFCN %d is not supported.\n", arfcn);
+ LOGPFOH(DOML, LOGL_ERROR, foh, "Given ARFCN %u is not supported.\n", arfcn);
return oml_fom_ack_nack(msg, NM_NACK_FREQ_NOTAVAIL);
}
}