summaryrefslogtreecommitdiff
path: root/ext/zip/php_zip.c
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2016-02-17 22:44:05 -0800
committerStanislav Malyshev <stas@php.net>2016-02-17 22:44:05 -0800
commit9afb29aa68351aa96f8edca51900f04513e291c7 (patch)
treed06d46988d22af335b597442c7871b56cf9d0447 /ext/zip/php_zip.c
parentcf842f1064edeaebc598e7d7071a4a7a039e5bc0 (diff)
downloadphp-git-9afb29aa68351aa96f8edca51900f04513e291c7.tar.gz
Remove TSRMLS_* from code, they are not used anymore
Diffstat (limited to 'ext/zip/php_zip.c')
-rw-r--r--ext/zip/php_zip.c2
1 files changed, 1 insertions, 1 deletions
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);
}