From ff23d2497286c8d4876009642bf6d35a2b9b2856 Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Thu, 10 Nov 2011 23:03:18 +0100 Subject: utils: Fix a bad double osmo_ prefix for osmo_hexdump_nospc Hopefully no project where using them it seems Signed-off-by: Sylvain Munaut --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/utils.c b/src/utils.c index a25479f1..50adc314 100644 --- a/src/utils.c +++ b/src/utils.c @@ -173,7 +173,7 @@ char *osmo_hexdump(const unsigned char *buf, int len) * This function will print a sequence of bytes as hexadecimal numbers, * without any space character between each byte (e.g. "1aefd9") */ -char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len) +char *osmo_hexdump_nospc(const unsigned char *buf, int len) { return _osmo_hexdump(buf, len, ""); } -- cgit v1.2.3