From 9afb29aa68351aa96f8edca51900f04513e291c7 Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Wed, 17 Feb 2016 22:44:05 -0800 Subject: Remove TSRMLS_* from code, they are not used anymore --- ext/zip/php_zip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/zip/php_zip.c') diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 83c14b5836..6bb23ad85d 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -1506,7 +1506,7 @@ static ZIPARCHIVE_METHOD(close) ze_obj = Z_ZIP_P(self); if ((err = zip_close(intern))) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", zip_strerror(intern)); + php_error_docref(NULL, E_WARNING, "%s", zip_strerror(intern)); zip_discard(intern); } -- cgit v1.2.1