From 0e6d7d652e1f695b6576c93d561f0aa763142119 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sat, 30 Oct 2004 19:14:05 +0000 Subject: [PATCH] - Update to new API --- ext/standard/incomplete_class.c | 4 ++-- 1 file 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; } -- 2.50.1