Commit 927f85f0 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Swap the '|' and '#' symbols so '#' means "miss", that's much more

graphically useful.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@890 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 47b590c7
......@@ -66,9 +66,9 @@ r_hist(void)
r = y * m;
for (x = 0; x < HIST_W; x++) {
if (bucket_miss[x] > r)
addch('|');
else if (bucket_hit[x] + bucket_miss[x] > r)
addch('#');
else if (bucket_hit[x] + bucket_miss[x] > r)
addch('|');
else
addch(' ');
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment