Skip to content

Commit ad7d3c8

Browse files
committed
Merge branch 'PHP-8.2'
2 parents 51b70e4 + 9cac68d commit ad7d3c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_API.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4785,7 +4785,7 @@ ZEND_API zend_result zend_update_static_property_ex(zend_class_entry *scope, zen
47854785
ZEND_API zend_result zend_update_static_property(zend_class_entry *scope, const char *name, size_t name_length, zval *value) /* {{{ */
47864786
{
47874787
zend_string *key = zend_string_init(name, name_length, 0);
4788-
bool retval = zend_update_static_property_ex(scope, key, value);
4788+
zend_result retval = zend_update_static_property_ex(scope, key, value);
47894789
zend_string_efree(key);
47904790
return retval;
47914791
}

0 commit comments

Comments
 (0)