fix compile warning

This commit is contained in:
Antony Dovgal 2008-12-27 20:21:57 +00:00
parent dde6be986c
commit 4ec1bdf3f2

View File

@ -739,12 +739,12 @@ static zend_object_value tidy_object_new_doc(zend_class_entry *class_type TSRMLS
return retval;
}
static zend_class_entry *tidy_get_ce_node(zval *object TSRMLS_DC)
static zend_class_entry *tidy_get_ce_node(const zval *object TSRMLS_DC)
{
return tidy_ce_node;
}
static zend_class_entry *tidy_get_ce_doc(zval *object TSRMLS_DC)
static zend_class_entry *tidy_get_ce_doc(const zval *object TSRMLS_DC)
{
return tidy_ce_doc;
}