summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/core/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/debug.c b/src/core/debug.c
index 4b902c28c..78502b3b5 100644
--- a/src/core/debug.c
+++ b/src/core/debug.c
@@ -15,7 +15,7 @@ void more ( void ) {
}
/* Produce a paged hex dump of the specified data and length */
-void hex_dump ( const char *data, const unsigned int len ) {
+void hex_dump ( const unsigned char *data, const unsigned int len ) {
unsigned int index;
for ( index = 0; index < len; index++ ) {
if ( ( index % 16 ) == 0 ) {