firmware/l23_api.c: cosmetic: use proper format specifier

The '%u' format specifier should be used for unsigned values.

Change-Id: I1108c34e864304126e581d30b75bbd95b93f60b8
This commit is contained in:
Vadim Yanitskiy 2018-09-06 02:22:15 +07:00
parent 4736561b22
commit f6ea84f774
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ static void l1ctl_rx_param_req(struct msgb *msg)
struct l1ctl_info_ul *ul = (struct l1ctl_info_ul *) l1h->data;
struct l1ctl_par_req *par_req = (struct l1ctl_par_req *) ul->payload;
printd("L1CTL_PARAM_REQ (ta=%d, tx_power=%d)\n", par_req->ta,
printd("L1CTL_PARAM_REQ (ta=%d, tx_power=%u)\n", par_req->ta,
par_req->tx_power);
l1s.ta = par_req->ta;