From: Felipe Pena Date: Sat, 16 Nov 2013 11:34:23 +0000 (-0200) Subject: - Fix compiler warning X-Git-Tag: php-5.6.0alpha1~110^2~291 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44d27200f63e10d0c3c003da491e4f60b163b499;p=php - Fix compiler warning --- 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 */