tony2001 Wed Mar 28 09:13:55 2007 UTC Modified files: /php-src/main php_variables.c Log: fix compile warning http://cvs.php.net/viewvc.cgi/php-src/main/php_variables.c?r1=1.137&r2=1.138&diff_format=u Index: php-src/main/php_variables.c diff -u php-src/main/php_variables.c:1.137 php-src/main/php_variables.c:1.138 --- php-src/main/php_variables.c:1.137 Fri Mar 2 22:04:46 2007 +++ php-src/main/php_variables.c Wed Mar 28 09:13:55 2007 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_variables.c,v 1.137 2007/03/02 22:04:46 stas Exp $ */ +/* $Id: php_variables.c,v 1.138 2007/03/28 09:13:55 tony2001 Exp $ */ #include <stdio.h> #include "php.h" @@ -134,7 +134,7 @@ 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++;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php