]> granicus.if.org Git - php/commitdiff
MFH: fix compile warning
authorAntony Dovgal <tony2001@php.net>
Wed, 28 Mar 2007 09:14:08 +0000 (09:14 +0000)
committerAntony Dovgal <tony2001@php.net>
Wed, 28 Mar 2007 09:14:08 +0000 (09:14 +0000)
main/php_variables.c

index bb7d4cf09218180a12eacf2db986908c7dea338e..0d8061622c4b589134e1fdab4c816a5ce3ebee1f 100644 (file)
@@ -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++;