From: Michael Wallner Date: Sun, 3 Sep 2006 09:09:56 +0000 (+0000) Subject: - attempt to fix #38696 X-Git-Tag: php-5.2.0RC4~118 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eca5331a81aa62e5183624f50d0f1a564f01709d;p=php - attempt to fix #38696 --- diff --git a/ext/date/php_date.c b/ext/date/php_date.c index ad790ee545..996dd84f48 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -1477,7 +1477,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; @@ -1524,7 +1524,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;