diff options
author | Marcus Boerger <helly@php.net> | 2004-10-30 19:14:05 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-10-30 19:14:05 +0000 |
commit | 0e6d7d652e1f695b6576c93d561f0aa763142119 (patch) | |
tree | 832c275e0f2a612e2771d7ead2a5770be1b0b474 /ext/standard/incomplete_class.c | |
parent | 861bad634a416f99605d548bd3a71f9771994dc3 (diff) | |
download | php-git-0e6d7d652e1f695b6576c93d561f0aa763142119.tar.gz |
- Update to new API
Diffstat (limited to 'ext/standard/incomplete_class.c')
-rw-r--r-- | ext/standard/incomplete_class.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/incomplete_class.c b/ext/standard/incomplete_class.c index 7f45cd88f3..00666edba9 100644 --- a/ext/standard/incomplete_class.c +++ b/ext/standard/incomplete_class.c @@ -82,8 +82,8 @@ static int incomplete_class_has_property(zval *object, zval *member, int check_e return 0; } -static union _zend_function *incomplete_class_get_method(zval *object, char *method, int method_len TSRMLS_DC) { - incomplete_class_message(object, E_ERROR TSRMLS_CC); +static union _zend_function *incomplete_class_get_method(zval **object, char *method, int method_len TSRMLS_DC) { + incomplete_class_message(*object, E_ERROR TSRMLS_CC); return NULL; } |