Skip to content

Commit db9bbf1

Browse files
committed
fix build
1 parent ef89fe3 commit db9bbf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpdbg_bp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ static inline phpdbg_breakbase_t *phpdbg_find_conditional_breakpoint(zend_execut
10231023
zend_try {
10241024
PHPDBG_G(flags) |= PHPDBG_IN_COND_BP;
10251025
zend_execute(EG(active_op_array) TSRMLS_CC);
1026-
if (i_zend_is_true(retval TSRMLS_CC)) {
1026+
if (zend_is_true(retval)) {
10271027
breakpoint = SUCCESS;
10281028
}
10291029
} zend_catch {

0 commit comments

Comments
 (0)