]> granicus.if.org Git - php/commitdiff
- Update to new API
authorMarcus Boerger <helly@php.net>
Sat, 30 Oct 2004 19:14:05 +0000 (19:14 +0000)
committerMarcus Boerger <helly@php.net>
Sat, 30 Oct 2004 19:14:05 +0000 (19:14 +0000)
ext/standard/incomplete_class.c

index 7f45cd88f36be0b6de921f2461aed2e732515e87..00666edba9f4d659771c239232e158ee859357c1 100644 (file)
@@ -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;
 }