common/oml.c: use proper format specifier for uint16_t

Change-Id: I8f372a689b3c1cc2cf925654b2db44a0f4ee7603
This commit is contained in:
Vadim Yanitskiy 2019-05-05 16:46:20 +03:00
parent 57e26c3e16
commit 40b1b4b20d
1 changed files with 1 additions and 2 deletions

View File

@ -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);
}
}