From: wessels <> Date: Sun, 19 Jan 1997 15:16:14 +0000 (+0000) Subject: oops, divide by days X-Git-Tag: SQUID_3_0_PRE1~5188 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2937cfc7427584324f739c4402d3386dff772429;p=thirdparty%2Fsquid.git oops, divide by days --- diff --git a/src/stat.cc b/src/stat.cc index a9fdb2b22a..7de942157a 100644 --- a/src/stat.cc +++ b/src/stat.cc @@ -1,6 +1,6 @@ /* - * $Id: stat.cc,v 1.119 1997/01/19 08:14:07 wessels Exp $ + * $Id: stat.cc,v 1.120 1997/01/19 08:16:14 wessels Exp $ * * DEBUG: section 18 Cache Manager Statistics * AUTHOR: Harvest Derived @@ -762,7 +762,7 @@ info_get(const cacheinfo * obj, StoreEntry * sentry) storeAppendPrintf(sentry, "{\tStorage Mem size:\t%d KB}\n", store_mem_size >> 10); storeAppendPrintf(sentry, "{\tStorage LRU Expiration Age:\t%6.2f days}\n", - (double) storeExpiredReferenceAge()); + (double) storeExpiredReferenceAge() / 86400.0); #if HAVE_GETRUSAGE && defined(RUSAGE_SELF) storeAppendPrintf(sentry, "{Resource usage for %s:}\n", appname);