mirror of https://github.com/ipxe/ipxe.git
How did this ever work properly before?
parent
47be47bf17
commit
3acbff4f00
|
@ -15,7 +15,7 @@ void more ( void ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Produce a paged hex dump of the specified data and length */
|
/* 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;
|
unsigned int index;
|
||||||
for ( index = 0; index < len; index++ ) {
|
for ( index = 0; index < len; index++ ) {
|
||||||
if ( ( index % 16 ) == 0 ) {
|
if ( ( index % 16 ) == 0 ) {
|
||||||
|
|
Loading…
Reference in New Issue