From: Stefan Fritsch Date: Thu, 4 Jul 2013 08:44:26 +0000 (+0000) Subject: style fix (no code change) X-Git-Tag: 2.5.0-alpha~5270 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e45b79e5e6282d78f1aeb811b52ec9870c2c373d;p=apache style fix (no code change) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1499679 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_deflate.c b/modules/filters/mod_deflate.c index 34de1d03d3..963f18341d 100644 --- a/modules/filters/mod_deflate.c +++ b/modules/filters/mod_deflate.c @@ -1013,8 +1013,8 @@ static apr_status_t deflate_in_filter(ap_filter_t *f, if (APR_BUCKET_IS_EOS(bkt)) { if (!ctx->done) { inflateEnd(&ctx->stream); - ap_log_rerror( - APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02481) "Encountered premature end-of-stream while inflating"); + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02481) + "Encountered premature end-of-stream while inflating"); return APR_EGENERAL; } @@ -1053,8 +1053,8 @@ static apr_status_t deflate_in_filter(ap_filter_t *f, /* sanity check - data after completed compressed body and before eos? */ if (ctx->done) { - ap_log_rerror( - APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02482) "Encountered extra data after compressed data"); + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02482) + "Encountered extra data after compressed data"); return APR_EGENERAL; }