]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 14 Jul 2012 00:14:36 +0000 (18:14 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 14 Jul 2012 00:14:36 +0000 (18:14 -0600)
src/store_dir.cc

index 771b034cab41b8415bdc239471fb0b3a9babe556..dc6f87e2ffc0b04f164e626a14af07ed94a2155b 100644 (file)
@@ -795,8 +795,8 @@ StoreController::keepForLocalMemoryCache(const StoreEntry &e) const
     const int64_t expectedSize = e.mem_obj->expectedReplySize(); // may be < 0
     const int64_t ramSize = max(loadedSize, expectedSize);
     const int64_t ramLimit = min(
-        static_cast<int64_t>(Config.memMaxSize),
-               static_cast<int64_t>(Config.Store.maxInMemObjSize));
+                                 static_cast<int64_t>(Config.memMaxSize),
+                                 static_cast<int64_t>(Config.Store.maxInMemObjSize));
     return ramSize <= ramLimit;
 }