verify-pack -v: do not report "chain length 0"
authorJunio C Hamano <gitster@pobox.com>
Fri, 7 Aug 2009 22:36:31 +0000 (15:36 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 8 Aug 2009 03:42:45 +0000 (20:42 -0700)
When making a histogram of delta chain length in the pack, the program
collects number of objects whose delta depth exceeds the MAX_CHAIN limit
in histogram[0], and showed it as the number of items that exceeds the
limit correctly. HOWEVER, it also showed the same number labeled as
"chain length = 0".

In fact, we are not showing the number of objects whose chain length is
zero, i.e. the base objects. Correct this.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found