diff options
Diffstat (limited to 'Zend/zend_iterators.h')
-rw-r--r-- | Zend/zend_iterators.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_iterators.h b/Zend/zend_iterators.h index 873f36efbe..c0b71e7e37 100644 --- a/Zend/zend_iterators.h +++ b/Zend/zend_iterators.h @@ -36,7 +36,7 @@ typedef struct _zend_object_iterator_funcs { int (*valid)(zend_object_iterator *iter TSRMLS_DC); /* fetch the item data for the current element */ - void (*get_current_data)(zend_object_iterator *iter, zval ***data TSRMLS_DC); + zval *(*get_current_data)(zend_object_iterator *iter TSRMLS_DC); /* fetch the key for the current element (optional, may be NULL). The key * should be written into the provided zval* using the ZVAL_* macros. If |