aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-07-06 00:01:22 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-07-06 00:01:35 +0700
commit5c1401d6f31aa19ed2b02da78551ec02bac3d350 (patch)
tree8c8fd85966f5103927a8883821101f2ae135f8a2
parent477fb3d9a40ce97f563a8b29c6b643da78b4c510 (diff)
scheduler: use msgb_hexdump_l2() in _sched_compose_tch_ind()
-rw-r--r--src/common/scheduler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/scheduler.c b/src/common/scheduler.c
index 5fe7b4ee..7ea6bfa2 100644
--- a/src/common/scheduler.c
+++ b/src/common/scheduler.c
@@ -819,7 +819,7 @@ int _sched_compose_tch_ind(struct l1sched_ts *l1ts, uint32_t fn,
memcpy(msg->l2h, tch, tch_len);
LOGL1S(DL1P, LOGL_DEBUG, l1ts, chan, l1sap->u.tch.fn, "%s Rx -> RTP: %s\n",
- gsm_lchan_name(lchan), osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
+ gsm_lchan_name(lchan), msgb_hexdump_l2(msg));
/* forward primitive */
l1sap_up(l1ts->ts->trx, l1sap);