Explorar el Código

Force a standard format upon debug messages.

tags/v0.9.3
Michael Brown hace 19 años
padre
commit
905ca1f21d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/include/compiler.h

+ 1
- 1
src/include/compiler.h Ver fichero

@@ -46,7 +46,7 @@ __asm__ ( ".equ\t" OBJECT_SYMBOL_STR ", 0" );
46 46
 #define DEBUG_SYMBOL _H2 ( debug_, OBJECT )
47 47
 #if DEBUG_SYMBOL
48 48
 #include "console.h"
49
-#define DBG(...) printf ( __VA_ARGS__ )
49
+#define DBG(...) printf ( _XSTR ( OBJECT ) ": " __VA_ARGS__ )
50 50
 #define DEBUG_SYMBOL_STR _XSTR ( DEBUG_SYMBOL )
51 51
 __asm__ ( ".equ\tWITH_DEBUG_MESSAGES, 0" );
52 52
 #else

Loading…
Cancelar
Guardar