diff options
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/common.h b/include/common.h index d244bd40b..aeb2d8436 100644 --- a/include/common.h +++ b/include/common.h @@ -120,8 +120,8 @@ typedef volatile unsigned char	vu_char;  #define debug(fmt,args...)	printf (fmt ,##args)  #define debugX(level,fmt,args...) if (DEBUG>=level) printf(fmt,##args);  #else -#define debug(fmt,args...) -#define debugX(level,fmt,args...) +static inline void debug(const char *fmt, ...) {} +static inline void debugX(int level, const char *fmt, ...) {}  #endif	/* DEBUG */  #ifdef DEBUG |