From 508772840e6a5a11b29d314fb4134aac2a5120dd Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sun, 8 Dec 2013 16:48:20 -0200 Subject: [PATCH] - CS --- phpdbg_frame.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpdbg_frame.c b/phpdbg_frame.c index c35a4f96f1..1037265c05 100644 --- a/phpdbg_frame.c +++ b/phpdbg_frame.c @@ -169,7 +169,8 @@ void phpdbg_dump_backtrace(size_t num TSRMLS_DC) /* {{{ */ phpdbg_write("frame #%d: ", i++); - if (zend_hash_get_current_data_ex(Z_ARRVAL(zbacktrace), (void**)&tmp, &position) == FAILURE) { + if (zend_hash_get_current_data_ex(Z_ARRVAL(zbacktrace), + (void**)&tmp, &position) == FAILURE) { phpdbg_write("{main} at %s:%ld", Z_STRVAL_PP(file), Z_LVAL_PP(line)); break; } -- 2.50.1