summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-03-02 16:17:58 +0000
committerMarcus Boerger <helly@php.net>2004-03-02 16:17:58 +0000
commit8d45fece4209741d865c7b3e9a3e7e70da3f81bd (patch)
tree4b58466b781aa80f921379e2de4501596121c6b5 /Zend/zend_API.h
parent17790a036960d8b92e4acac430052a15bcffa51e (diff)
downloadphp-git-8d45fece4209741d865c7b3e9a3e7e70da3f81bd.tar.gz
Fix zend_parse_method_parameters_ex() and make it consistant with
zend_parse_method_parameters(). # Obviously its only place of use is in pdo just right now.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index d3b0c76f2b..9a1e85095a 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -159,7 +159,7 @@ ZEND_API int zend_parse_parameters_ex(int flags, int num_args TSRMLS_DC, char *t
ZEND_API char *zend_zval_type_name(zval *arg);
ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, char *type_spec, ...);
-ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, char *type_spec, zend_class_entry *ce, void **object, ...);
+ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, char *type_spec, ...);
/* End of parameter parsing API -- andrei */