From 090e30a8634dfc50fd3595ee95a4c21304a7775c Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 21 Aug 2002 06:22:19 +0000 Subject: [PATCH] Fix ZTS build. --- ext/standard/string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/standard/string.c b/ext/standard/string.c index 3b62ea00c4..48f87e02b3 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -3993,12 +3993,12 @@ static php_stream_filter_factory strfilter_rot13_factory = { PHP_MINIT_FUNCTION(string_filters) { - return php_stream_filter_register_factory("string.rot13", &strfilter_rot13_factory); + return php_stream_filter_register_factory("string.rot13", &strfilter_rot13_factory TSRMLS_CC); } PHP_MSHUTDOWN_FUNCTION(string_filters) { - return php_stream_filter_unregister_factory("string.rot13"); + return php_stream_filter_unregister_factory("string.rot13" TSRMLS_CC); } /* }}} */ -- 2.40.0