From f388db74f57ee9dde55c8df76fdba335d6600a48 Mon Sep 17 00:00:00 2001 From: Etienne Kneuss Date: Sun, 20 Jul 2008 16:32:43 +0000 Subject: [PATCH] Fix build for solaris --- ext/spl/spl_array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index b801aca3a1..816221c464 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -1169,7 +1169,7 @@ SPL_METHOD(Array, seek) zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0 TSRMLS_CC, "Seek position %ld is out of range", opos); } /* }}} */ -int inline spl_array_object_count_elements_helper(spl_array_object *intern, long *count TSRMLS_DC) /* {{{ */ +int static spl_array_object_count_elements_helper(spl_array_object *intern, long *count TSRMLS_DC) /* {{{ */ { HashTable *aht = spl_array_get_hash_table(intern, 0 TSRMLS_CC); HashPosition pos; -- 2.50.1