]> granicus.if.org Git - php/commitdiff
- Arginfo fix (Hannes)
authorMarcus Boerger <helly@php.net>
Tue, 13 Jun 2006 20:56:52 +0000 (20:56 +0000)
committerMarcus Boerger <helly@php.net>
Tue, 13 Jun 2006 20:56:52 +0000 (20:56 +0000)
Zend/zend_exceptions.c

index 8a3c059e3f6a17e0385e1f6d04ea74cd721af2d0..502ba6047f8e22dd5a56b21661bad11186a24645 100644 (file)
@@ -634,7 +634,7 @@ ZEND_METHOD(exception, __toString)
  * that gives the user anything to accomplish this.
  */
 static
-ZEND_BEGIN_ARG_INFO(arginfo_exception___construct, 0)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_exception___construct, 0, 0, 0)
        ZEND_ARG_INFO(0, message)
        ZEND_ARG_INFO(0, code)
 ZEND_END_ARG_INFO();
@@ -653,7 +653,7 @@ static zend_function_entry default_exception_functions[] = {
 };
 
 static
-ZEND_BEGIN_ARG_INFO_EX(arginfo_error_exception___construct, 0, 0, 3)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_error_exception___construct, 0, 0, 0)
        ZEND_ARG_INFO(0, message)
        ZEND_ARG_INFO(0, code)
        ZEND_ARG_INFO(0, severity)