diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2013-12-12 22:09:38 +0100 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2013-12-12 22:09:38 +0100 |
commit | 1433dec2d0c00fcda5bebaeebefca8264deb912a (patch) | |
tree | 6802d5de691c8bb1d574b09625c50a60aad84d45 /sapi/cli/php_cli.c | |
parent | 0fc8e6af0a0ff8eeb15746978ce1e6009ed76f11 (diff) | |
download | php-git-1433dec2d0c00fcda5bebaeebefca8264deb912a.tar.gz |
Kill another TSRMLS_FETCH() in zend_indent()
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 9f3fc4b5b7..eec117ab1f 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -1024,7 +1024,7 @@ static int do_cli(int argc, char **argv TSRMLS_DC) /* {{{ */ /* Zeev might want to do something with this one day */ case PHP_MODE_INDENT: open_file_for_scanning(&file_handle TSRMLS_CC); - zend_indent(); + zend_indent(TSRMLS_C); zend_file_handle_dtor(file_handle.handle TSRMLS_CC); goto out; break; |