- Update to new API

This commit is contained in:
Marcus Boerger 2004-10-30 19:14:05 +00:00
parent 861bad634a
commit 0e6d7d652e

View 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;
}