diff options
author | Michael Wallner <mike@php.net> | 2006-07-25 14:44:53 +0000 |
---|---|---|
committer | Michael Wallner <mike@php.net> | 2006-07-25 14:44:53 +0000 |
commit | 799ec9975b4812571272981adc9a7ec02e2270d9 (patch) | |
tree | ab279ade9fda4b212e7b391cbbd91bb199b63f07 /ext/reflection/php_reflection.c | |
parent | e11e2a137ce5bd84aa710e152a2ecf10d67abd40 (diff) | |
download | php-git-799ec9975b4812571272981adc9a7ec02e2270d9.tar.gz |
- ws
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index c8a6b2ae5e..20de73ce09 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -2625,8 +2625,8 @@ ZEND_METHOD(reflection_class, getStaticProperties) { reflection_object *intern; zend_class_entry *ce; - HashPosition pos; - zval **value; + HashPosition pos; + zval **value; METHOD_NOTSTATIC_NUMPARAMS(reflection_class_ptr, 0); GET_REFLECTION_OBJECT_PTR(ce); @@ -2656,7 +2656,7 @@ ZEND_METHOD(reflection_class, getStaticProperties) } zend_hash_update(Z_ARRVAL_P(return_value), key, key_len, value, sizeof(zval *), NULL); - } + } zend_hash_move_forward_ex(CE_STATIC_MEMBERS(ce), &pos); } } |