summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2005-04-22 04:27:59 +0200
committerMichael Brown2005-04-22 04:27:59 +0200
commit4e3ebba8e6f32365a1551d0f07c0f8cd611becb5 (patch)
tree28fa66fb735bd3d1a5780d67200c78887df11ad0
parentAutomatically updated with the program (diff)
downloadipxe-4e3ebba8e6f32365a1551d0f07c0f8cd611becb5.tar.gz
ipxe-4e3ebba8e6f32365a1551d0f07c0f8cd611becb5.tar.xz
ipxe-4e3ebba8e6f32365a1551d0f07c0f8cd611becb5.zip
Revert debug message prefix back to none, since we sometimes want to use
DBG() several times to build up a line.
-rw-r--r--src/include/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/compiler.h b/src/include/compiler.h
index 80b762c61..58422d65c 100644
--- a/src/include/compiler.h
+++ b/src/include/compiler.h
@@ -46,7 +46,7 @@ __asm__ ( ".equ\t" OBJECT_SYMBOL_STR ", 0" );
#define DEBUG_SYMBOL _H2 ( debug_, OBJECT )
#if DEBUG_SYMBOL
#include "console.h"
-#define DBG(...) printf ( _XSTR ( OBJECT ) ": " __VA_ARGS__ )
+#define DBG(...) printf ( __VA_ARGS__ )
#define DEBUG_SYMBOL_STR _XSTR ( DEBUG_SYMBOL )
__asm__ ( ".equ\tWITH_DEBUG_MESSAGES, 0" );
#else