diff options
author | George Schlossnagle <gschlossnagle@php.net> | 2003-07-04 03:26:37 +0000 |
---|---|---|
committer | George Schlossnagle <gschlossnagle@php.net> | 2003-07-04 03:26:37 +0000 |
commit | 96b71d7f87f8c250b4af203416872c80eb2547ed (patch) | |
tree | 88aeda7b74e3f1ad9518ee24d0eb1a08e932e70c /ext/reflection/php_reflection.c | |
parent | 99b41db6c1c591002970661af5301d3808e07e3c (diff) | |
download | php-git-96b71d7f87f8c250b4af203416872c80eb2547ed.tar.gz |
ws fix
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index ba78b39a71..f01bf3132e 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -822,7 +822,7 @@ static int _addmethod(zend_function *mptr, int num_args, va_list args, zend_hash long filter = va_arg(args, long); if (mptr->common.fn_flags & filter) { - TSRMLS_FETCH(); + TSRMLS_FETCH(); ALLOC_ZVAL(method); reflection_method_factory(ce, mptr, method TSRMLS_CC); add_next_index_zval(retval, method); @@ -889,7 +889,7 @@ static int _addproperty(zend_property_info *pptr, int num_args, va_list args, ze long filter = va_arg(args, long); if (pptr->flags & filter) { - TSRMLS_FETCH(); + TSRMLS_FETCH(); ALLOC_ZVAL(property); reflection_property_factory(ce, pptr, property TSRMLS_CC); add_next_index_zval(retval, property); |