aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-04-18 02:13:21 +0300
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-04-18 02:13:21 +0300
commitadb2e1666f96983784e8ab03c6244d81ffb21c4d (patch)
tree9e950987193dde8c1b0eae820363985a866aebe2
parentbb9cba01679421fd8a61e41a94e2df33047164bc (diff)
input/e1d: use msgb_hexdump_l2() in handle_ts_raw_read()
-rw-r--r--src/input/e1d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/e1d.c b/src/input/e1d.c
index ddd1bc4..4ab7c36 100644
--- a/src/input/e1d.c
+++ b/src/input/e1d.c
@@ -242,7 +242,7 @@ static int handle_ts_raw_read(struct osmo_fd *bfd)
msgb_put(msg, ret);
msg->l2h = msg->data;
- LOGPITS(e1i_ts, DLMIB, LOGL_DEBUG, "RAW CHAN RX: %s\n", osmo_hexdump(msgb_l2(msg), ret));
+ LOGPITS(e1i_ts, DLMIB, LOGL_DEBUG, "RAW CHAN RX: %s\n", msgb_hexdump_l2(msg));
ret = e1inp_rx_ts(e1i_ts, msg, 0, 0);
/* physical layer indicates that data has been sent,
* we thus can send some more data */