From: Bill Stoddard Date: Fri, 9 Feb 2001 18:15:01 +0000 (+0000) Subject: Fix another windows compile break. X-Git-Tag: 2.0.10~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c9ba2539bfe7434c46cca058d6b5f1f26714bf4;p=apache Fix another windows compile break. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88038 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_filter.h b/include/util_filter.h index 6ddee20523..8667338704 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -400,7 +400,7 @@ AP_DECLARE(apr_status_t) ap_save_brigade(ap_filter_t *f, apr_bucket_brigade **sa * @param ctx The filter to pass the brigade to * @deffunc apr_status_t ap_filter_flush(apr_bucket_brigade *bb, void *ctx) */ -AP_DECLARE(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx); +AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx); /** * Flush the current brigade down the filter stack diff --git a/server/util_filter.c b/server/util_filter.c index 209f0cff8b..ce71cdebe3 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -266,7 +266,7 @@ AP_DECLARE(apr_status_t) ap_save_brigade(ap_filter_t *f, apr_bucket_brigade **sa return APR_SUCCESS; } -AP_DECLARE(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx) +AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx) { ap_filter_t *f = ctx;