]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Sat, 1 Feb 1997 06:59:56 +0000 (06:59 +0000)
committerwessels <>
Sat, 1 Feb 1997 06:59:56 +0000 (06:59 +0000)
src/store.cc

index 23fe5ea02d10937b1eefd795ec095e0a75309e06..725ca0852bcb51fd59e02a1144337afa7f9d6e6d 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store.cc,v 1.204 1997/01/31 21:16:50 wessels Exp $
+ * $Id: store.cc,v 1.205 1997/01/31 23:59:56 wessels Exp $
  *
  * DEBUG: section 20    Storeage Manager
  * AUTHOR: Harvest Derived
@@ -2398,13 +2398,13 @@ storeRandomizeBuckets(void)
 {
     int i;
     if (MaintBucketsOrder == NULL)
-        MaintBucketsOrder = xcalloc(store_buckets, sizeof(unsigned int));
+       MaintBucketsOrder = xcalloc(store_buckets, sizeof(unsigned int));
     for (i = 0; i < store_buckets; i++)
        *(MaintBucketsOrder + i) = (unsigned int) i;
     qsort((char *) MaintBucketsOrder,
        store_buckets,
        sizeof(unsigned int),
-       (QS) compareRandom);
+           (QS) compareRandom);
 }
 
 static void
@@ -2575,7 +2575,7 @@ storeMaintainSwapSpace(void *unused)
                scan_revolutions++;
                debug(20, 1, "Completed %d full expiration scans of store table\n",
                    scan_revolutions);
-               storeRandomizeBuckets();
+               storeRandomizeBuckets();
            }
            bucket = *(MaintBucketsOrder + bucket_index);
            bucket_index++;