From 545b364d560b9550f853bd8dd5ab1641225a03c2 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 2 Aug 2015 13:42:01 +0200 Subject: remove TSRMLS_* either remains or merged in from PHP5 --- ext/zip/php_zip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/zip/php_zip.c') diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 85bc51f152..672097dec5 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -2292,13 +2292,13 @@ static ZIPARCHIVE_METHOD(setCompressionName) ZIP_FROM_OBJECT(intern, this); - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|l", + if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|l", &name, &name_len, &comp_method, &comp_flags) == FAILURE) { return; } if (name_len < 1) { - php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Empty string as entry name"); + php_error_docref(NULL, E_NOTICE, "Empty string as entry name"); } idx = zip_name_locate(intern, name, 0); @@ -2329,7 +2329,7 @@ static ZIPARCHIVE_METHOD(setCompressionIndex) ZIP_FROM_OBJECT(intern, this); - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll|l", + if (zend_parse_parameters(ZEND_NUM_ARGS(), "ll|l", &index, &comp_method, &comp_flags) == FAILURE) { return; } -- cgit v1.2.1