From: Wez Furlong Date: Wed, 1 Jan 2003 11:21:40 +0000 (+0000) Subject: Tidy up X-Git-Tag: PHP_5_0_dev_before_13561_fix~539 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97a0102b810613090afc478742ac8a9e7f4c0a37;p=php Tidy up --- diff --git a/ext/standard/filters.c b/ext/standard/filters.c index 8a701790ce..0378585cf3 100644 --- a/ext/standard/filters.c +++ b/ext/standard/filters.c @@ -97,9 +97,11 @@ static const struct { php_stream_filter_factory *factory; } standard_filters[] = { { &strfilter_rot13_ops, &strfilter_rot13_factory }, + /* additional filters to go here */ { NULL, NULL } }; +/* {{{ filter MINIT and MSHUTDOWN */ PHP_MINIT_FUNCTION(standard_filters) { int i; @@ -112,7 +114,6 @@ PHP_MINIT_FUNCTION(standard_filters) return FAILURE; } } - return SUCCESS; } @@ -125,6 +126,7 @@ PHP_MSHUTDOWN_FUNCTION(standard_filters) } return SUCCESS; } +/* }}} */ /* * Local variables: