aboutsummaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2008-06-24 23:17:12 -0400
committerJunio C Hamano <gitster@pobox.com>2008-06-24 23:58:57 -0700
commit99093238bbf2cd886debf7bdb91478cb405ef66d (patch)
tree799a8766f4dc7d3414ac31200149ba9945b1c6c2 /sha1_file.c
parent8e21d63b02f1b26f7695ca515e51e4622a995af2 (diff)
downloadgit-99093238bbf2cd886debf7bdb91478cb405ef66d.tar.gz
git-99093238bbf2cd886debf7bdb91478cb405ef66d.tar.xz
optimize verify-pack a bit
Using find_pack_entry_one() to get object offsets is rather suboptimal when nth_packed_object_offset() can be used directly. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c
index b2db549d8..e79b2c114 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -1714,7 +1714,7 @@ const unsigned char *nth_packed_object_sha1(struct packed_git *p,
}
}
-static off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
+off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
{
const unsigned char *index = p->index_data;
index += 4 * 256;