From: Michael Brown Date: Thu, 13 Jul 2006 18:27:23 +0000 (+0000) Subject: How did this ever work properly before? X-Git-Tag: v0.9.3~1208 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3acbff4f00a8ece02faf327a4842991ed525f734;p=thirdparty%2Fipxe.git How did this ever work properly before? --- 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 ) {