trxcon: fix hex formatting in prim_enqeue()

Change-Id: I78c310bd9cc5d69bbeca575ebf4a480f16971e93
This commit is contained in:
Vadim Yanitskiy 2024-03-11 04:05:59 +07:00
parent f12b17dffb
commit fcaaaaf396
1 changed files with 2 additions and 2 deletions

View File

@ -368,7 +368,7 @@ static int prim_enqeue(struct l1sched_state *sched, struct msgb *msg,
if (OSMO_UNLIKELY(lchan == NULL || !lchan->active)) {
LOGP_SCHEDD(sched, LOGL_ERROR,
"No [active] lchan for primitive " L1SCHED_PRIM_STR_FMT " "
"(fn=%u, chan_nr=%02x, link_id=%02x, len=%u): %s\n",
"(fn=%u, chan_nr=0x%02x, link_id=0x%02x, len=%u): %s\n",
L1SCHED_PRIM_STR_ARGS(prim),
chdr->frame_nr, chdr->chan_nr, chdr->link_id,
msgb_l2len(msg), msgb_hexdump_l2(msg));
@ -378,7 +378,7 @@ static int prim_enqeue(struct l1sched_state *sched, struct msgb *msg,
LOGP_LCHAND(lchan, LOGL_DEBUG,
"Enqueue primitive " L1SCHED_PRIM_STR_FMT " "
"(fn=%u, chan_nr=%02x, link_id=%02x, len=%u): %s\n",
"(fn=%u, chan_nr=0x%02x, link_id=0x%02x, len=%u): %s\n",
L1SCHED_PRIM_STR_ARGS(prim),
chdr->frame_nr, chdr->chan_nr, chdr->link_id,
msgb_l2len(msg), msgb_hexdump_l2(msg));