fix compile warning

This commit is contained in:
Antony Dovgal 2007-03-28 09:13:55 +00:00
parent 998744520b
commit 39454ffdfa

View file

@ -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++;