From: Etienne Kneuss Date: Sat, 19 Jul 2008 19:45:25 +0000 (+0000) Subject: Complete the ZTS build fix X-Git-Tag: BEFORE_HEAD_NS_CHANGE~1202 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4254ef3891c7ed091d12e390999f7c43baccc733;p=php Complete the ZTS build fix --- diff --git a/ext/spl/spl_iterators.c b/ext/spl/spl_iterators.c index 398e59eb44..8302380c12 100755 --- a/ext/spl/spl_iterators.c +++ b/ext/spl/spl_iterators.c @@ -538,7 +538,7 @@ static void spl_recursive_it_it_construct(INTERNAL_FUNCTION_PARAMETERS, zend_cla Creates a RecursiveIteratorIterator from a RecursiveIterator. */ SPL_METHOD(RecursiveIteratorIterator, __construct) { - spl_recursive_it_it_construct(INTERNAL_FUNCTION_PARAM_PASSTHRU, spl_ce_RecursiveIteratorIterator, zend_ce_iterator, RIT_RecursiveIteratorIterator TSRMLS_CC); + spl_recursive_it_it_construct(INTERNAL_FUNCTION_PARAM_PASSTHRU, spl_ce_RecursiveIteratorIterator, zend_ce_iterator, RIT_RecursiveIteratorIterator); } /* }}} */ /* {{{ proto void RecursiveIteratorIterator::rewind() U @@ -949,7 +949,7 @@ static void spl_recursive_tree_iterator_get_postfix(spl_recursive_it_object * ob RecursiveIteratorIterator to generate ASCII graphic trees for the entries in a RecursiveIterator */ SPL_METHOD(RecursiveTreeIterator, __construct) { - spl_recursive_it_it_construct(INTERNAL_FUNCTION_PARAM_PASSTHRU, spl_ce_RecursiveTreeIterator, zend_ce_iterator, RIT_RecursiveTreeIterator TSRMLS_CC); + spl_recursive_it_it_construct(INTERNAL_FUNCTION_PARAM_PASSTHRU, spl_ce_RecursiveTreeIterator, zend_ce_iterator, RIT_RecursiveTreeIterator); } /* }}} */ /* {{{ proto void RecursiveTreeIterator::setPrefixPart() throws OutOfRangeException