From: rousskov <> Date: Mon, 30 Mar 1998 03:42:46 +0000 (+0000) Subject: - Report polishing X-Git-Tag: SQUID_3_0_PRE1~3705 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7028e2019cbea299baceb5c7535c862f2a7d115a;p=thirdparty%2Fsquid.git - Report polishing --- diff --git a/src/cache_diff.cc b/src/cache_diff.cc index 44cc42eb62..6a60c6d663 100644 --- a/src/cache_diff.cc +++ b/src/cache_diff.cc @@ -1,5 +1,5 @@ /* - * $Id: cache_diff.cc,v 1.4 1998/03/29 20:39:53 rousskov Exp $ + * $Id: cache_diff.cc,v 1.5 1998/03/29 20:42:46 rousskov Exp $ * * AUTHOR: Alex Rousskov * @@ -197,7 +197,8 @@ cacheIndexCmpReport(CacheIndex *idx, int shared_count) printf("%s:\t %7d = %7d + %7d (%7.2f%% + %7.2f%%)\n", idx->name, idx->count, - shared_count, idx->count - shared_count, + idx->count - shared_count, + shared_count, xpercent(idx->count-shared_count, idx->count), xpercent(shared_count, idx->count)); }