mirror of
https://github.com/ipxe/ipxe
synced 2025-12-15 00:12:19 +03:00
How did this ever work properly before?
This commit is contained in:
@@ -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 ) {
|
||||||
|
|||||||
Reference in New Issue
Block a user