diff options
author | Felipe Pena <felipe@php.net> | 2008-08-22 15:54:21 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-08-22 15:54:21 +0000 |
commit | 9d5ab6e54f4d0772400e39bfd906987f4ee22ab6 (patch) | |
tree | f34c34e49361d09b418a77744394a6b322c0b364 /Zend | |
parent | 8ed8b011ef775cae2f56af12a5a2fcc0238c7396 (diff) | |
download | php-git-9d5ab6e54f4d0772400e39bfd906987f4ee22ab6.tar.gz |
- MFH: Removed unused arguments
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 8cdcc24474..3cbd55b875 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -2790,7 +2790,7 @@ ZEND_API void zend_do_inheritance(zend_class_entry *ce, zend_class_entry *parent zend_update_class_constants(parent_ce TSRMLS_CC); zend_hash_apply_with_arguments(CE_STATIC_MEMBERS(parent_ce) TSRMLS_CC, (apply_func_args_t)inherit_static_prop, 1, &ce->default_static_members); } else { - zend_hash_apply_with_arguments(&parent_ce->default_static_members TSRMLS_CC, (apply_func_args_t)inherit_static_prop, 1, &ce->default_static_members TSRMLS_CC); + zend_hash_apply_with_arguments(&parent_ce->default_static_members TSRMLS_CC, (apply_func_args_t)inherit_static_prop, 1, &ce->default_static_members); } zend_hash_merge_ex(&ce->properties_info, &parent_ce->properties_info, (copy_ctor_func_t) (ce->type & ZEND_INTERNAL_CLASS ? zend_duplicate_property_info_internal : zend_duplicate_property_info), sizeof(zend_property_info), (merge_checker_func_t) do_inherit_property_access_check, ce); |