From fff3894efe42ab1daf38b89ab324122087caf8f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sun, 10 Aug 2014 18:22:59 +0000 Subject: [PATCH] fixed dbg() printout macro --- BaS_gcc/sys/mmu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_gcc/sys/mmu.c b/BaS_gcc/sys/mmu.c index 54745a1..e3d0581 100644 --- a/BaS_gcc/sys/mmu.c +++ b/BaS_gcc/sys/mmu.c @@ -64,7 +64,7 @@ //#define DEBUG_MMU #ifdef DEBUG_MMU -#define dbg(format, arg...) do { xprintf("DEBUG: " format, ##arg);} while(0) +#define dbg(format, arg...) do { xprintf("DEBUG (%s()): " format, __FUNCTION__, ##arg);} while(0) #else #define dbg(format, arg...) do {;} while (0) #endif /* DEBUG_MMU */