From: Michael Wallner Date: Sun, 3 Sep 2006 09:09:38 +0000 (+0000) Subject: - attempt to fix #38696 X-Git-Tag: RELEASE_1_0_0RC1~1787 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c8079c8ce6a9a3bf025aade896550283650808e;p=php - attempt to fix #38696 --- diff --git a/ext/date/php_date.c b/ext/date/php_date.c index aad77c1815..a6377d3a7a 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -1605,7 +1605,7 @@ static void date_register_classes(TSRMLS_D) date_object_handlers_timezone.clone_obj = date_object_clone_timezone; } -inline zend_object_value date_object_new_date_ex(zend_class_entry *class_type, php_date_obj **ptr TSRMLS_DC) +static inline zend_object_value date_object_new_date_ex(zend_class_entry *class_type, php_date_obj **ptr TSRMLS_DC) { php_date_obj *intern; zend_object_value retval; @@ -1652,7 +1652,7 @@ static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC) return new_ov; } -inline zend_object_value date_object_new_timezone_ex(zend_class_entry *class_type, php_timezone_obj **ptr TSRMLS_DC) +static inline zend_object_value date_object_new_timezone_ex(zend_class_entry *class_type, php_timezone_obj **ptr TSRMLS_DC) { php_timezone_obj *intern; zend_object_value retval;