summaryrefslogtreecommitdiff
path: root/Zend/zend_object_handlers.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2014-04-15 11:05:03 +0800
committerXinchen Hui <laruence@gmail.com>2014-04-15 11:05:03 +0800
commita0690ff2881a3ed741c81cceec58ce716161e552 (patch)
tree379a53683035b80ac793c9ec15601b5ccb5c9652 /Zend/zend_object_handlers.h
parent2056359594cbaeeb38d13a73f54cfaba52b17475 (diff)
downloadphp-git-a0690ff2881a3ed741c81cceec58ce716161e552.tar.gz
Fixed zend_object_get_t in simpleXML
Diffstat (limited to 'Zend/zend_object_handlers.h')
-rw-r--r--Zend/zend_object_handlers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h
index 249effa10e..48e2e49cd8 100644
--- a/Zend/zend_object_handlers.h
+++ b/Zend/zend_object_handlers.h
@@ -59,7 +59,7 @@ typedef void (*zend_object_set_t)(zval *object, zval *value TSRMLS_DC);
/* Used to get object value. Can be used when converting object value to
* one of the basic types and when using scalar ops (like ++, +=) on the object
*/
-typedef zval* (*zend_object_get_t)(zval *object TSRMLS_DC);
+typedef zval* (*zend_object_get_t)(zval *object, zval *rv TSRMLS_DC);
/* Used to check if a property of the object exists */
/* param has_set_exists: