diff options
| author | Michael Brown | 2006-07-13 20:27:23 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-07-13 20:27:23 +0200 |
| commit | 3acbff4f00a8ece02faf327a4842991ed525f734 (patch) | |
| tree | 0b3f681d457a38e40307f4ce2ddeb8843c85df54 | |
| parent | Adding SSL Constructs header file. (First version) (diff) | |
| download | ipxe-3acbff4f00a8ece02faf327a4842991ed525f734.tar.gz ipxe-3acbff4f00a8ece02faf327a4842991ed525f734.tar.xz ipxe-3acbff4f00a8ece02faf327a4842991ed525f734.zip | |
How did this ever work properly before?
| -rw-r--r-- | src/core/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) { |
