Skip to content

Commit

Permalink
MFH: fix compile warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tony2001 committed Mar 28, 2007
1 parent 23d64ae commit 291f3a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/php_variables.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
/* 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++;
Expand Down

0 comments on commit 291f3a2

Please sign in to comment.