]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/log/access_log.cc
Fix formatting errors in d8165775
[thirdparty/squid.git] / src / log / access_log.cc
index cd8f0d3f86ebfc5fa70d30ca371f785dda19df8a..f3a75a3de3b77fc541a748655807f2731859c18e 100644 (file)
@@ -322,11 +322,11 @@ HierarchyLogEntry::peerResponseTime(struct timeval &responseTime)
 
     // accommodate read without (completed) write
     const auto last_write = peer_last_write_.tv_sec > 0 ?
-        peer_last_write_ : peer_last_read_;
+                            peer_last_write_ : peer_last_read_;
 
     // accommodate write without (completed) read
     const auto last_read = peer_last_read_.tv_sec > 0 ?
-        peer_last_read_ : peer_last_write_;
+                           peer_last_read_ : peer_last_write_;
 
     tvSub(responseTime, last_write, last_read);
     // The peer response time (%<pt) stopwatch is currently defined to start