diff options
author | Antony Dovgal <tony2001@php.net> | 2007-03-28 09:14:08 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-03-28 09:14:08 +0000 |
commit | 291f3a28c965ffeba13d4bf8fb79795feade89f8 (patch) | |
tree | 2f4e7b9ea664656e47397d0b49b65efd12c22f96 /main/php_variables.c | |
parent | 23d64aeaa4b12944c89db7ec2d3d81869450335e (diff) | |
download | php-git-291f3a28c965ffeba13d4bf8fb79795feade89f8.tar.gz |
MFH: fix compile warning
Diffstat (limited to 'main/php_variables.c')
-rw-r--r-- | main/php_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c index bb7d4cf092..0d8061622c 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -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++; |