summaryrefslogtreecommitdiffstats
path: root/src/core/debug.c
diff options
context:
space:
mode:
authorMichael Brown2006-07-13 20:27:23 +0200
committerMichael Brown2006-07-13 20:27:23 +0200
commit3acbff4f00a8ece02faf327a4842991ed525f734 (patch)
tree0b3f681d457a38e40307f4ce2ddeb8843c85df54 /src/core/debug.c
parentAdding SSL Constructs header file. (First version) (diff)
downloadipxe-3acbff4f00a8ece02faf327a4842991ed525f734.tar.gz
ipxe-3acbff4f00a8ece02faf327a4842991ed525f734.tar.xz
ipxe-3acbff4f00a8ece02faf327a4842991ed525f734.zip
How did this ever work properly before?
Diffstat (limited to 'src/core/debug.c')
-rw-r--r--src/core/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/debug.c b/src/core/debug.c
index 4b902c28..78502b3b 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 ) {