diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-12-18 10:06:42 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-12-18 10:06:42 +0000 |
commit | ef89fe37ca9fa6b1b096033a610830d08cf8c85e (patch) | |
tree | addeff56d4d4c361706f23a98fe405a7a4716a41 /phpdbg_bp.c | |
parent | 64dabffd08f68124fffedb817ac270c97bedf32c (diff) | |
download | php-git-ef89fe37ca9fa6b1b096033a610830d08cf8c85e.tar.gz |
fix build error zts
Diffstat (limited to 'phpdbg_bp.c')
-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 3fc3030a65..ef942a94f6 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)) { + if (i_zend_is_true(retval TSRMLS_CC)) { breakpoint = SUCCESS; } } zend_catch { |