diff options
author | Marcus Boerger <helly@php.net> | 2003-08-16 20:27:29 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-08-16 20:27:29 +0000 |
commit | c346aad91a3f5db185f7add67ddf778db59c7bbd (patch) | |
tree | a7ea62a3289d133e8828d1d631ba080a1ad31fcc /ext/spl/spl_engine.h | |
parent | 7a12eb8a2d788f9a3bb99075f78b20712c7b307d (diff) | |
download | php-git-c346aad91a3f5db185f7add67ddf778db59c7bbd.tar.gz |
spl_call_method returns the zval* if used
Diffstat (limited to 'ext/spl/spl_engine.h')
-rwxr-xr-x | ext/spl/spl_engine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_engine.h b/ext/spl/spl_engine.h index 91e1f7b016..e4c0e93a4a 100755 --- a/ext/spl/spl_engine.h +++ b/ext/spl/spl_engine.h @@ -34,7 +34,7 @@ EX(opline)++; \ return 0; -int spl_call_method(zval **object_pp, zend_class_entry *obj_ce, zend_function **fn_proxy, char *function_name, int function_name_len, zval **retval_ptr, int param_count, zval* arg1, zval* arg2 TSRMLS_DC); +zval * spl_call_method(zval **object_pp, zend_class_entry *obj_ce, zend_function **fn_proxy, char *function_name, int function_name_len, zval **retval_ptr, int param_count, zval* arg1, zval* arg2 TSRMLS_DC); /* {{{ zend_class_entry */ static inline zend_class_entry *spl_get_class_entry(zval *obj TSRMLS_DC) |