helly           Sun Mar 13 11:35:01 2005 EDT

  Modified files:              
    /php-src/ext/spl    spl_array.c 
  Log:
  - Fix signature definition
  
http://cvs.php.net/diff.php/php-src/ext/spl/spl_array.c?r1=1.64&r2=1.65&ty=u
Index: php-src/ext/spl/spl_array.c
diff -u php-src/ext/spl/spl_array.c:1.64 php-src/ext/spl/spl_array.c:1.65
--- php-src/ext/spl/spl_array.c:1.64    Thu Mar 10 19:41:42 2005
+++ php-src/ext/spl/spl_array.c Sun Mar 13 11:35:01 2005
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: spl_array.c,v 1.64 2005/03/11 00:41:42 helly Exp $ */
+/* $Id: spl_array.c,v 1.65 2005/03/13 16:35:01 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
@@ -57,12 +57,12 @@
 ZEND_END_ARG_INFO();
 
 static
-ZEND_BEGIN_ARG_INFO(arginfo_array_offsetGet, 0)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_array_offsetGet, 0, 0, 1)
        ZEND_ARG_INFO(0, index)
 ZEND_END_ARG_INFO();
 
 static
-ZEND_BEGIN_ARG_INFO(arginfo_array_offsetSet, 0)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_array_offsetSet, 0, 0, 2)
        ZEND_ARG_INFO(0, index)
        ZEND_ARG_INFO(0, newval)
 ZEND_END_ARG_INFO();

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to