Skip to content

Commit ce2edc1

Browse files
committed
Removed zend_always_inline
1 parent dee6a44 commit ce2edc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/bcmath/bcmath.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ static zend_always_inline zend_result bcmath_number_mod_internal(
10391039
return SUCCESS;
10401040
}
10411041

1042-
static zend_always_inline zend_result bcmath_number_pow_internal(
1042+
static zend_result bcmath_number_pow_internal(
10431043
bc_num n1, bc_num n2, bc_num *ret,
10441044
size_t n1_full_scale, size_t *scale, bool auto_scale, bool is_op
10451045
) {
@@ -1702,7 +1702,7 @@ PHP_METHOD(BcMath_Number, __unserialize)
17021702
Z_PARAM_ARRAY_HT(props)
17031703
ZEND_PARSE_PARAMETERS_END();
17041704

1705-
zval *zv = zend_hash_str_find(props, ZEND_STRL("value"));
1705+
zval *zv = zend_hash_str_find(props, ZSTR_KNOWN(ZEND_STR_VALUE));
17061706
if (!zv || Z_TYPE_P(zv) != IS_STRING || Z_STRLEN_P(zv) == 0) {
17071707
goto fail;
17081708
}

0 commit comments

Comments
 (0)