mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
MFH: fix compile warning
This commit is contained in:
parent
23d64aeaa4
commit
291f3a28c9
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ PHPAPI void php_register_variable_ex(char *var, zval *val, zval *track_vars_arra
|
||||||
|
|
||||||
if(++nest_level > PG(max_input_nesting_level)) {
|
if(++nest_level > PG(max_input_nesting_level)) {
|
||||||
/* too many levels of nesting */
|
/* 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++;
|
ip++;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue