From db9bbf1147093ac993177df16338366b5dad387f Mon Sep 17 00:00:00 2001 From: krakjoe Date: Wed, 18 Dec 2013 10:12:17 +0000 Subject: [PATCH] fix build --- phpdbg_bp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpdbg_bp.c b/phpdbg_bp.c index ef942a94f6..8b4f0b9a72 100644 --- a/phpdbg_bp.c +++ b/phpdbg_bp.c @@ -1023,7 +1023,7 @@ static inline phpdbg_breakbase_t *phpdbg_find_conditional_breakpoint(zend_execut zend_try { PHPDBG_G(flags) |= PHPDBG_IN_COND_BP; zend_execute(EG(active_op_array) TSRMLS_CC); - if (i_zend_is_true(retval TSRMLS_CC)) { + if (zend_is_true(retval)) { breakpoint = SUCCESS; } } zend_catch { -- 2.50.1