From: foobar Date: Wed, 19 Jan 2005 01:46:26 +0000 (+0000) Subject: - Fixed bug #29183 (Undefined symbol zend_check_private with Solaris CC) X-Git-Tag: RELEASE_0_2~248 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20be66466666220d708e73e81b4cd0b45e6303fb;p=php - Fixed bug #29183 (Undefined symbol zend_check_private with Solaris CC) --- diff --git a/Zend/zend_object_handlers.c b/Zend/zend_object_handlers.c index 46d471c68e..f7e54e5a16 100644 --- a/Zend/zend_object_handlers.c +++ b/Zend/zend_object_handlers.c @@ -521,7 +521,7 @@ ZEND_API void zend_std_call_user_call(INTERNAL_FUNCTION_PARAMETERS) * Returns the function address that should be called, or NULL * if no such function exists. */ -inline zend_function *zend_check_private(zend_function *fbc, zend_class_entry *ce, int fn_flags, char *function_name_strval, int function_name_strlen TSRMLS_DC) +static inline zend_function *zend_check_private(zend_function *fbc, zend_class_entry *ce, int fn_flags, char *function_name_strval, int function_name_strlen TSRMLS_DC) { if (!ce) { return 0;