diff options
author | Anatol Belski <ab@php.net> | 2014-12-16 12:56:00 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-16 12:56:00 +0100 |
commit | 89f87576a1fe9a5839fb239150642b228418d389 (patch) | |
tree | 0cf1abe9fd6e324d6c7e34192854e6b7d311d445 /sapi/phpdbg/phpdbg_out.c | |
parent | 9d70df24f8a35e7706d629151f43fc0757eb5f58 (diff) | |
download | php-git-89f87576a1fe9a5839fb239150642b228418d389.tar.gz |
various fixes for removing explicit tsrm_ls usage
Diffstat (limited to 'sapi/phpdbg/phpdbg_out.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_out.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sapi/phpdbg/phpdbg_out.c b/sapi/phpdbg/phpdbg_out.c index a6e57a873a..d32d252e1a 100644 --- a/sapi/phpdbg/phpdbg_out.c +++ b/sapi/phpdbg/phpdbg_out.c @@ -1175,11 +1175,7 @@ PHPDBG_API int phpdbg_output_err_buf(const char *tag, const char *xmlfmt, const PHPDBG_G(err_buf).active = 0; -#ifdef ZTS - va_start(args, tsrm_ls); -#else va_start(args, strfmt); -#endif len = phpdbg_vprint(PHPDBG_G(err_buf).type, PHPDBG_G(err_buf).fd, tag ? tag : PHPDBG_G(err_buf).tag, xmlfmt, strfmt, args); va_end(args); |