From: Source Maintenance Date: Thu, 6 Aug 2015 12:12:11 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_4_0_1~145 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5308d137f470398b4030fff3c9bae5ff6534c9a3;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/http/RegisteredHeaders.cc b/src/http/RegisteredHeaders.cc index 78e89aa9bf..e8f220f607 100644 --- a/src/http/RegisteredHeaders.cc +++ b/src/http/RegisteredHeaders.cc @@ -124,9 +124,10 @@ const LookupTable HeaderLookupTable(Http::HdrT std::ostream& operator<< (std::ostream &s, Http::HdrType id) { - if (Http::any_HdrType_enum_value(id)) - s << Http::HeaderTable[id].name << '[' << static_cast(id) << ']'; - else - s << "Invalid-Header[" << static_cast(id) << ']'; - return s; + if (Http::any_HdrType_enum_value(id)) + s << Http::HeaderTable[id].name << '[' << static_cast(id) << ']'; + else + s << "Invalid-Header[" << static_cast(id) << ']'; + return s; } +