aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-03-02 16:07:30 -0800
committerJunio C Hamano <gitster@pobox.com>2008-03-02 16:07:30 -0800
commitc0b48ad777eb8ad42d8d0eafc8f0ee82955b1319 (patch)
tree637f16f49f172a279356b66fd2445f8db69515bf /contrib
parent859c4fbef589841585f8f21cc567b7016681df7a (diff)
parent5f4347bba39ddb147b06913ac263fc46954d2d0b (diff)
downloadgit-c0b48ad777eb8ad42d8d0eafc8f0ee82955b1319.tar.gz
git-c0b48ad777eb8ad42d8d0eafc8f0ee82955b1319.tar.xz
Merge branch 'np/verify-pack'
* np/verify-pack: add storage size output to 'git verify-pack -v' fix unimplemented packed_object_info_detail() features make verify_one_pack() a bit less wrong wrt packed_git structure factorize revindex code out of builtin-pack-objects.c Conflicts: Makefile
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/stats/packinfo.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/stats/packinfo.pl b/contrib/stats/packinfo.pl
index aab501ea0..f4a7b62cd 100755
--- a/contrib/stats/packinfo.pl
+++ b/contrib/stats/packinfo.pl
@@ -93,7 +93,7 @@ my %depths;
my @depths;
while (<STDIN>) {
- my ($sha1, $type, $size, $offset, $depth, $parent) = split(/\s+/, $_);
+ my ($sha1, $type, $size, $space, $offset, $depth, $parent) = split(/\s+/, $_);
next unless ($sha1 =~ /^[0-9a-f]{40}$/);
$depths{$sha1} = $depth || 0;
push(@depths, $depth || 0);