From: wessels <> Date: Thu, 8 Jan 1998 10:39:22 +0000 (+0000) Subject: typo X-Git-Tag: SQUID_3_0_PRE1~4223 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ee3dc75b950276691c128b245b569d061a092a6;p=thirdparty%2Fsquid.git typo --- diff --git a/src/stat.cc b/src/stat.cc index d6dca4a327..2b837c7c4a 100644 --- a/src/stat.cc +++ b/src/stat.cc @@ -1,6 +1,6 @@ /* - * $Id: stat.cc,v 1.183 1998/01/06 05:40:43 wessels Exp $ + * $Id: stat.cc,v 1.184 1998/01/08 03:39:22 wessels Exp $ * * DEBUG: section 18 Cache Manager Statistics * AUTHOR: Harvest Derived @@ -972,6 +972,6 @@ statAvgDump(StoreEntry * sentry) XAVG(select_loops)); storeAppendPrintf(sentry, "cpu_time = %f seconds\n", ct); storeAppendPrintf(sentry, "wall_time = %f seconds\n", dt); - storeAppendPrintf(sentry, "cpu_usage %f%%\n", 100.0*ct/dt); + storeAppendPrintf(sentry, "cpu_usage = %f%%\n", 100.0*ct/dt); storeBufferFlush(sentry); }