From eca5331a81aa62e5183624f50d0f1a564f01709d Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Sun, 3 Sep 2006 09:09:56 +0000 Subject: [PATCH] - attempt to fix #38696 --- ext/date/php_date.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1