Skip to content

Commit 0672c9f

Browse files
committed
Use zend_error_unchecked() for deprecation message
1 parent bc63af2 commit 0672c9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_operators.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ ZEND_API void ZEND_FASTCALL convert_to_object(zval *op) /* {{{ */
811811

812812
void zend_incompatible_double_to_long_error(double d)
813813
{
814-
zend_error(E_DEPRECATED, "Implicit conversion from non-compatible float %.*H to int", -1, d);
814+
zend_error_unchecked(E_DEPRECATED, "Implicit conversion from non-compatible float %.*H to int", -1, d);
815815
}
816816

817817
ZEND_API zend_long ZEND_FASTCALL zval_get_long_func(zval *op, bool is_strict) /* {{{ */

0 commit comments

Comments
 (0)