]> granicus.if.org Git - php/commitdiff
MFH: Complete the ZTS build fix
authorEtienne Kneuss <colder@php.net>
Sat, 19 Jul 2008 19:45:55 +0000 (19:45 +0000)
committerEtienne Kneuss <colder@php.net>
Sat, 19 Jul 2008 19:45:55 +0000 (19:45 +0000)
ext/spl/spl_iterators.c

index c496fd21c5240edbbffdcbcd2256108b144eeb82..be9a58bcf3d66496d4c91462fae3875a50ff6d1b 100755 (executable)
@@ -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()
@@ -937,7 +937,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