From: Antony Dovgal Date: Wed, 28 Mar 2007 09:13:55 +0000 (+0000) Subject: fix compile warning X-Git-Tag: RELEASE_1_1_0~96 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39454ffdfa423f16788016263a2345a0238da196;p=php fix compile warning --- diff --git a/main/php_variables.c b/main/php_variables.c index 81e0501fdb..8c0b34d961 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -134,7 +134,7 @@ PHPAPI void php_register_variable_ex(char *var, zval *val, zval *track_vars_arra if(++nest_level > PG(max_input_nesting_level)) { /* too many levels of nesting */ - php_error_docref(NULL TSRMLS_CC, E_ERROR, "Input variable nesting level more than allowed %d (change max_input_nesting_level in php.ini to increase the limit)", PG(max_input_nesting_level)); + php_error_docref(NULL TSRMLS_CC, E_ERROR, "Input variable nesting level more than allowed %ld (change max_input_nesting_level in php.ini to increase the limit)", PG(max_input_nesting_level)); } ip++;