From 3acbff4f00a8ece02faf327a4842991ed525f734 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 13 Jul 2006 18:27:23 +0000 Subject: [PATCH] How did this ever work properly before? --- src/core/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/debug.c b/src/core/debug.c index 4b902c28..78502b3b 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 ) {