diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-06-29 02:51:10 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-06-29 02:51:10 +0200 |
commit | 088f589f7d5aa24a8c42fea582dc53b8cb7232c2 (patch) | |
tree | 97e9052ee449a2cbecf5a2fa0646177a2ada6f81 /sapi/phpdbg/phpdbg_frame.c | |
parent | f500471e8c27af61e3c213d183e583b49d8b42ee (diff) | |
download | php-git-088f589f7d5aa24a8c42fea582dc53b8cb7232c2.tar.gz |
Make backtraces *much* more readable
Diffstat (limited to 'sapi/phpdbg/phpdbg_frame.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_frame.c b/sapi/phpdbg/phpdbg_frame.c index 584052ee0b..c2a995dd4a 100644 --- a/sapi/phpdbg/phpdbg_frame.c +++ b/sapi/phpdbg/phpdbg_frame.c @@ -164,7 +164,7 @@ static void phpdbg_dump_prototype(zval *tmp) /* {{{ */ } ++j; - zend_print_flat_zval_r(argstmp); + php_printf("%s", phpdbg_short_zval_print(argstmp, 40)); phpdbg_xml("</arg>"); } ZEND_HASH_FOREACH_END(); |