]> granicus.if.org Git - php/commitdiff
- ws
authorMichael Wallner <mike@php.net>
Tue, 25 Jul 2006 14:44:53 +0000 (14:44 +0000)
committerMichael Wallner <mike@php.net>
Tue, 25 Jul 2006 14:44:53 +0000 (14:44 +0000)
ext/reflection/php_reflection.c

index c8a6b2ae5eae7e6a389bd04d9d7b9520b63eff25..20de73ce09c46ee7e870d1fca150d861b25f0843 100644 (file)
@@ -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);
        }
 }