diff options
Diffstat (limited to 'tests/m2ua/m2ua_test.c')
-rw-r--r-- | tests/m2ua/m2ua_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/m2ua/m2ua_test.c b/tests/m2ua/m2ua_test.c index f2294fa..078a7c1 100644 --- a/tests/m2ua/m2ua_test.c +++ b/tests/m2ua/m2ua_test.c @@ -57,7 +57,7 @@ static void test_asp_up() } if (memcmp(msg->data, asp_up, msg->len) != 0) { - printf("Got '%s'\n", hexdump(msg->data, msg->len)); + printf("Got '%s'\n", osmo_hexdump(msg->data, msg->len)); FAIL("Wrong memory"); } @@ -85,7 +85,7 @@ static void test_data() } if (memcmp(msg->data, data, msg->len) != 0) { - printf("Got '%s'\n", hexdump(msg->data, msg->len)); + printf("Got '%s'\n", osmo_hexdump(msg->data, msg->len)); FAIL("Wrong memory"); } |