tony2001 Tue Jul 29 07:32:52 2008 UTC Modified files: /php-src/ext/reflection php_reflection.c Log: more similar fixes http://cvs.php.net/viewvc.cgi/php-src/ext/reflection/php_reflection.c?r1=1.305&r2=1.306&diff_format=u Index: php-src/ext/reflection/php_reflection.c diff -u php-src/ext/reflection/php_reflection.c:1.305 php-src/ext/reflection/php_reflection.c:1.306 --- php-src/ext/reflection/php_reflection.c:1.305 Tue Jul 29 07:29:22 2008 +++ php-src/ext/reflection/php_reflection.c Tue Jul 29 07:32:52 2008 @@ -20,7 +20,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_reflection.c,v 1.305 2008/07/29 07:29:22 tony2001 Exp $ */ +/* $Id: php_reflection.c,v 1.306 2008/07/29 07:32:52 tony2001 Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -850,7 +850,7 @@ } /* }}} */ -static int _extension_ini_string(zend_ini_entry *ini_entry, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ +static int _extension_ini_string(zend_ini_entry *ini_entry TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ { string *str = va_arg(args, string *); char *indent = va_arg(args, char *); @@ -886,7 +886,7 @@ } /* }}} */ -static int _extension_class_string(zend_class_entry **pce, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ +static int _extension_class_string(zend_class_entry **pce TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ { string *str = va_arg(args, string *); char *indent = va_arg(args, char *); @@ -5257,7 +5257,7 @@ php_info_print_table_start(); php_info_print_table_header(2, "Reflection", "enabled"); - php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.305 2008/07/29 07:29:22 tony2001 Exp $"); + php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.306 2008/07/29 07:32:52 tony2001 Exp $"); php_info_print_table_end(); } /* }}} */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php