Explorar el Código

How did this ever work properly before?

tags/v0.9.3
Michael Brown hace 18 años
padre
commit
3acbff4f00
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/core/debug.c

+ 1
- 1
src/core/debug.c Ver fichero

@@ -15,7 +15,7 @@ void more ( void ) {
15 15
 }
16 16
 
17 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 19
 	unsigned int index;
20 20
 	for ( index = 0; index < len; index++ ) {
21 21
 		if ( ( index % 16 ) == 0 ) {

Loading…
Cancelar
Guardar