]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sun, 18 Dec 2011 01:31:58 +0000 (18:31 -0700)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sun, 18 Dec 2011 01:31:58 +0000 (18:31 -0700)
src/StatHist.cc

index 6831c390f538734903e3d7d18eec46a9c3122e6b..71e651ee3b26e2074e60b62763a2d6683b278c57 100644 (file)
@@ -110,7 +110,7 @@ StatHist::StatHist(const StatHist &src) :
         capacity_(src.capacity_), min_(src.min_), max_(src.max_),
         scale_(src.scale_), val_in(src.val_in), val_out(src.val_out)
 {
-    if(src.bins!=NULL) {
+    if (src.bins!=NULL) {
         bins = static_cast<int *>(xcalloc(src.capacity_, sizeof(int)));
         memcpy(bins,src.bins,capacity_*sizeof(*bins));
     }