Browse Source

How did this ever work properly before?

tags/v0.9.3
Michael Brown 18 years ago
parent
commit
3acbff4f00
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/core/debug.c

+ 1
- 1
src/core/debug.c View File

15
 }
15
 }
16
 
16
 
17
 /* Produce a paged hex dump of the specified data and length */
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
 	unsigned int index;
19
 	unsigned int index;
20
 	for ( index = 0; index < len; index++ ) {
20
 	for ( index = 0; index < len; index++ ) {
21
 		if ( ( index % 16 ) == 0 ) {
21
 		if ( ( index % 16 ) == 0 ) {

Loading…
Cancel
Save