]> granicus.if.org Git - apache/commitdiff
style fix (no code change)
authorStefan Fritsch <sf@apache.org>
Thu, 4 Jul 2013 08:44:26 +0000 (08:44 +0000)
committerStefan Fritsch <sf@apache.org>
Thu, 4 Jul 2013 08:44:26 +0000 (08:44 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1499679 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_deflate.c

index 34de1d03d3d9655cd397b8ee46643dfc749d453c..963f18341d625f5ef132ca4472d78ceef7e7a152 100644 (file)
@@ -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;
             }