summaryrefslogtreecommitdiff
path: root/firmware/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/debug.h')
-rw-r--r--firmware/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/debug.h b/firmware/debug.h
index adedfd9546..0f6b1eed64 100644
--- a/firmware/debug.h
+++ b/firmware/debug.h
@@ -23,7 +23,7 @@ extern void debugf(char* fmt,...);
23 23
24#ifdef __GNUC__ 24#ifdef __GNUC__
25 25
26/* GCC handles ellipses in macros, which 26/* GCC handles ellipses in macros, which
27 means we can avoid the call completely */ 27 means we can avoid the call completely */
28#ifdef DEBUG 28#ifdef DEBUG
29#define DEBUGF(fmt,args...) debugf(fmt, ## args) 29#define DEBUGF(fmt,args...) debugf(fmt, ## args)
@@ -33,7 +33,7 @@ extern void debugf(char* fmt,...);
33 33
34#else 34#else
35 35
36void DEBUGF debugf 36#define DEBUGF debugf
37 37
38#endif /* GCC */ 38#endif /* GCC */
39 39