|
|
@@ -15,7 +15,7 @@ void more ( void ) {
|
|
15
|
15
|
}
|
|
16
|
16
|
|
|
17
|
17
|
/* Produce a paged hex dump of the specified data and length */
|
|
18
|
|
-void hex_dump ( const char *data, const unsigned int len ) {
|
|
|
18
|
+void hex_dump ( const unsigned char *data, const unsigned int len ) {
|
|
19
|
19
|
unsigned int index;
|
|
20
|
20
|
for ( index = 0; index < len; index++ ) {
|
|
21
|
21
|
if ( ( index % 16 ) == 0 ) {
|