]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Fri, 2 Jun 2017 00:12:13 +0000 (00:12 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Fri, 2 Jun 2017 00:12:13 +0000 (00:12 +0000)
src/http.cc

index 3e685d0e52b92fd2dc3c4029b708379832e03408..a47e137a501575e27327816cf81f44039966e345 100644 (file)
@@ -2463,8 +2463,8 @@ std::ostream &operator <<(std::ostream &os, const HttpStateData::ReuseDecision &
     };
 
     assert(d.answer >= HttpStateData::ReuseDecision::reuseNot &&
-            d.answer <= HttpStateData::ReuseDecision::doNotCacheButShare);
+           d.answer <= HttpStateData::ReuseDecision::doNotCacheButShare);
     return os << ReuseMessages[d.answer] << " because " << d.reason <<
-        "; HTTP status " << d.statusCode << " " << *(d.entry);
+           "; HTTP status " << d.statusCode << " " << *(d.entry);
 }