diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-12-18 10:12:17 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-12-18 10:12:17 +0000 |
commit | db9bbf1147093ac993177df16338366b5dad387f (patch) | |
tree | 116bc2fc40d2b5872cab424ebf6e9f79f94e59cc | |
parent | ef89fe37ca9fa6b1b096033a610830d08cf8c85e (diff) | |
download | php-git-db9bbf1147093ac993177df16338366b5dad387f.tar.gz |
fix build
-rw-r--r-- | phpdbg_bp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |