]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Fri, 31 Jul 1998 05:31:09 +0000 (05:31 +0000)
committerwessels <>
Fri, 31 Jul 1998 05:31:09 +0000 (05:31 +0000)
src/stat.cc
src/store.cc

index bdfe18125db0ccae89780fe297e21e289d8b68d9..4477664cef74a33d242c62364451fb4e505c66c7 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: stat.cc,v 1.272 1998/07/30 22:07:54 wessels Exp $
+ * $Id: stat.cc,v 1.273 1998/07/30 23:31:09 wessels Exp $
  *
  * DEBUG: section 18    Cache Manager Statistics
  * AUTHOR: Harvest Derived
@@ -305,7 +305,7 @@ statObjects(void *data)
        cbdataFree(state);
        return;
     } else if (fwdCheckDeferRead(-1, state->sentry)) {
-        eventAdd("statObjects", statObjects, state, 0.1, 1);
+       eventAdd("statObjects", statObjects, state, 0.1, 1);
        return;
     }
     storeBuffer(state->sentry);
@@ -558,7 +558,7 @@ info_get(StoreEntry * sentry)
 #endif /* HAVE_MALLINFO */
     storeAppendPrintf(sentry, "Memory accounted for:\n");
     storeAppendPrintf(sentry, "\tTotal accounted:       %6d KB\n",
-       memTotalAllocated()>>10);
+       memTotalAllocated() >> 10);
 
     storeAppendPrintf(sentry, "File descriptor usage for %s:\n", appname);
     storeAppendPrintf(sentry, "\tMaximum number of file descriptors:   %4d\n",
index 2f66bcd85daebc05cb8523ca056874aa228a9eb9..774cfa4b11e4c8ff8cd92f2776bc69ef766b72a1 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store.cc,v 1.438 1998/07/26 07:01:18 wessels Exp $
+ * $Id: store.cc,v 1.439 1998/07/30 23:31:19 wessels Exp $
  *
  * DEBUG: section 20    Storage Manager
  * AUTHOR: Harvest Derived
@@ -177,9 +177,9 @@ storeHashInsert(StoreEntry * e, const cache_key * key)
     e->key = storeKeyDup(key);
     hash_join(store_table, (hash_link *) e);
     if (EBIT_TEST(e->flag, KEY_PRIVATE))
-        dlinkAddTail(e, &e->lru, &store_list);
+       dlinkAddTail(e, &e->lru, &store_list);
     else
-        dlinkAdd(e, &e->lru, &store_list);
+       dlinkAdd(e, &e->lru, &store_list);
 }
 
 static void