Fix UC_DEBUGF

This commit is contained in:
Nils O. Selåsdal
2013-10-16 01:46:50 +02:00
parent ee3dd22b0e
commit 2d680052b2
+1 -1
View File
@@ -274,7 +274,7 @@ void uc_logf(int log_level, int module, int raw,
#ifdef DEBUG #ifdef DEBUG
# define UC_DEBUGF(mod, fmt, ...)\ # define UC_DEBUGF(mod, fmt, ...)\
uc_logf(UC_LL_DEBUG, mod,0 , UC_SRC_LOCATION fmt, ## __VA_ARGS__) uc_logf(UC_LL_DEBUG, mod,0 , UC_SRC_LOCATION, fmt, ## __VA_ARGS__)
# define UC_DEBUGFR(mod, fmt, ...)\ # define UC_DEBUGFR(mod, fmt, ...)\
uc_logf(UC_LL_DEBUG, mod,1 , UC_SRC_LOCATION, fmt, ## __VA_ARGS__) uc_logf(UC_LL_DEBUG, mod,1 , UC_SRC_LOCATION, fmt, ## __VA_ARGS__)
#else #else