From: Marcus Boerger Date: Sat, 30 Oct 2004 19:14:05 +0000 (+0000) Subject: - Update to new API X-Git-Tag: RELEASE_0_2~797 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e6d7d652e1f695b6576c93d561f0aa763142119;p=php - Update to new API --- 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; }