From 44d27200f63e10d0c3c003da491e4f60b163b499 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sat, 16 Nov 2013 09:34:23 -0200 Subject: [PATCH] - Fix compiler warning --- phpdbg_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpdbg_utils.h b/phpdbg_utils.h index 8077d8f236..badb4cb12d 100644 --- a/phpdbg_utils.h +++ b/phpdbg_utils.h @@ -87,7 +87,7 @@ int phpdbg_print(int TSRMLS_DC, FILE*, const char*, ...); #if PHPDBG_DEBUG # define phpdbg_debug(fmt, ...) phpdbg_print(P_LOG TSRMLS_CC, stderr, fmt, ##__VA_ARGS__) #else -# define phpdbg_debug +# define phpdbg_debug(fmt, ...) #endif /* {{{ For writing blank lines */ -- 2.50.1