From 2d680052b2bccc5eb5533dc2b00cab7f0062a0b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Wed, 16 Oct 2013 01:46:50 +0200 Subject: [PATCH] Fix UC_DEBUGF --- include/ucore/logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ucore/logging.h b/include/ucore/logging.h index 501a45d..b7bc443 100644 --- a/include/ucore/logging.h +++ b/include/ucore/logging.h @@ -274,7 +274,7 @@ void uc_logf(int log_level, int module, int raw, #ifdef DEBUG # 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, ...)\ uc_logf(UC_LL_DEBUG, mod,1 , UC_SRC_LOCATION, fmt, ## __VA_ARGS__) #else