aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/debug.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-08-20 13:16:26 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-08-20 13:56:45 +0200
commite78074eb07acd02308459b5e5a70622bdb73318b (patch)
treeddaac5ef8b620c4adfb74d73d9007d0e9cb45d1f /openbsc/src/debug.c
parent5859de86deefd8cb2f5ae6f8a7bd8e9c4fd05e1f (diff)
[debug] Make the hexdump parameter const
This way it can be used from values coming TLVP_VAL.
Diffstat (limited to 'openbsc/src/debug.c')
-rw-r--r--openbsc/src/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/debug.c b/openbsc/src/debug.c
index 6483710af..fa903af98 100644
--- a/openbsc/src/debug.c
+++ b/openbsc/src/debug.c
@@ -143,7 +143,7 @@ void debugp(unsigned int subsys, char *file, int line, int cont, const char *for
static char hexd_buff[4096];
-char *hexdump(unsigned char *buf, int len)
+char *hexdump(const unsigned char *buf, int len)
{
int i;
char *cur = hexd_buff;