sfox Sun Aug 31 21:02:56 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar phar_object.c Log: - unnecessary ; We are now 100% synched - let's keep it that way! http://cvs.php.net/viewvc.cgi/php-src/ext/phar/phar_object.c?r1=1.266.2.45&r2=1.266.2.46&diff_format=u Index: php-src/ext/phar/phar_object.c diff -u php-src/ext/phar/phar_object.c:1.266.2.45 php-src/ext/phar/phar_object.c:1.266.2.46 --- php-src/ext/phar/phar_object.c:1.266.2.45 Sun Aug 31 19:38:40 2008 +++ php-src/ext/phar/phar_object.c Sun Aug 31 21:02:55 2008 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: phar_object.c,v 1.266.2.45 2008/08/31 19:38:40 cellog Exp $ */ +/* $Id: phar_object.c,v 1.266.2.46 2008/08/31 21:02:55 sfox Exp $ */ #include "phar_internal.h" #include "func_interceptors.h" @@ -5033,12 +5033,12 @@ static ZEND_BEGIN_ARG_INFO_EX(arginfo_entry___construct, 0, 0, 1) ZEND_ARG_INFO(0, filename) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() static ZEND_BEGIN_ARG_INFO_EX(arginfo_entry_chmod, 0, 0, 1) ZEND_ARG_INFO(0, perms) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() zend_function_entry php_entry_methods[] = { PHP_ME(PharFileInfo, __construct, arginfo_entry___construct, ZEND_ACC_PUBLIC)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php