aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2020-03-29 19:01:58 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2020-04-02 05:42:57 +0700
commitb30f28f38de7423d2cc7e184dbb3c62d44e61e55 (patch)
treee648ef659a27cb0a6c57c07b52ed392a85915743
parentc374ab00ac8d924c503961ca9f28edd6d35d9fbe (diff)
l1if: fix pcu_rx_rach_ind(): use proper format string specifiers
-rw-r--r--src/pcu_l1_if.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcu_l1_if.cpp b/src/pcu_l1_if.cpp
index deccb305..37a07053 100644
--- a/src/pcu_l1_if.cpp
+++ b/src/pcu_l1_if.cpp
@@ -441,7 +441,7 @@ static int pcu_rx_rach_ind(struct gsm_pcu_if_rach_ind *rach_ind)
int current_fn = get_current_fn();
LOGP(DL1IF, LOGL_INFO, "RACH request received: sapi=%d "
- "qta=%d, ra=%d, fn=%d, cur_fn=%d, is_11bit=%d\n", rach_ind->sapi, rach_ind->qta,
+ "qta=%d, ra=0x%02x, fn=%u, cur_fn=%d, is_11bit=%d\n", rach_ind->sapi, rach_ind->qta,
rach_ind->ra, rach_ind->fn, current_fn, rach_ind->is_11bit);
switch (rach_ind->sapi) {