]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
How did this ever work properly before?
authorMichael Brown <mcb30@etherboot.org>
Thu, 13 Jul 2006 18:27:23 +0000 (18:27 +0000)
committerMichael Brown <mcb30@etherboot.org>
Thu, 13 Jul 2006 18:27:23 +0000 (18:27 +0000)
src/core/debug.c

index 4b902c28cf2a3ced83f95d58b9a7db5a4cf2bfe8..78502b3b5ecdecdf84b3c8edb42e1a5076e94760 100644 (file)
@@ -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 ) {