aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcommon/gsup_test_client.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-02-09 00:27:56 +0100
committerHarald Welte <laforge@gnumonks.org>2018-02-09 02:22:09 +0100
commita41b630ae70cfdc98124caf2b6e494a5890f0635 (patch)
tree721d1b50ed3a3113924811078468225b08f5b02a /src/libcommon/gsup_test_client.c
parent54a10efea079d37083f6db07969e8e8be3b68bfe (diff)
cosmetic: Use msgb_hexdump*() rather than manual osmo_hexdump() on msg
Diffstat (limited to 'src/libcommon/gsup_test_client.c')
-rw-r--r--src/libcommon/gsup_test_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcommon/gsup_test_client.c b/src/libcommon/gsup_test_client.c
index 963b4951b..8b6199e51 100644
--- a/src/libcommon/gsup_test_client.c
+++ b/src/libcommon/gsup_test_client.c
@@ -220,7 +220,7 @@ static int gsupc_read_cb(struct gsup_client *gsupc, struct msgb *msg)
struct imsi_op *io;
int rc;
- DEBUGP(DLGSUP, "Rx GSUP %s\n", osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
+ DEBUGP(DLGSUP, "Rx GSUP %s\n", msgb_hexdump(msg));
rc = osmo_gsup_decode(msgb_l2(msg), msgb_l2len(msg), &gsup_msg);
if (rc < 0)