summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-09-06 02:22:15 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2018-09-06 20:33:23 +0000
commitf6ea84f77446afbb3a9442dc2dec857c21d468f5 (patch)
tree120fe8bbe7cfd8dc928e244dda3278f060eea6ed
parent4736561b22c5d6c7ed9e673c6d76655710202f7e (diff)
firmware/l23_api.c: cosmetic: use proper format specifier
The '%u' format specifier should be used for unsigned values. Change-Id: I1108c34e864304126e581d30b75bbd95b93f60b8
-rw-r--r--src/target/firmware/layer1/l23_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/firmware/layer1/l23_api.c b/src/target/firmware/layer1/l23_api.c
index e53b0c8f..e46ca09d 100644
--- a/src/target/firmware/layer1/l23_api.c
+++ b/src/target/firmware/layer1/l23_api.c
@@ -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;