diff options
author | Jeff King <peff@peff.net> | 2019-09-13 15:02:18 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-09-13 14:40:33 -0700 |
commit | 56d9cbe68b0746640d22b7c05468d76df92debf3 (patch) | |
tree | b2f4965f0cc5ad9400cf2f6d8217b740df3ca9a6 /packfile.c | |
parent | bab28d9f97088f58863665f608020f64dffec9ee (diff) | |
download | git-56d9cbe68b0746640d22b7c05468d76df92debf3.tar.gz |
packfile: expose get_delta_base()
In a following commit get_delta_base() will be used outside
packfile.c, so let's make it non static and declare it in
packfile.h.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'packfile.c')
-rw-r--r-- | packfile.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packfile.c b/packfile.c index fc43a6c52c..5a6e8d54f1 100644 --- a/packfile.c +++ b/packfile.c @@ -1191,11 +1191,11 @@ const struct packed_git *has_packed_and_bad(struct repository *r, return NULL; } -static off_t get_delta_base(struct packed_git *p, - struct pack_window **w_curs, - off_t *curpos, - enum object_type type, - off_t delta_obj_offset) +off_t get_delta_base(struct packed_git *p, + struct pack_window **w_curs, + off_t *curpos, + enum object_type type, + off_t delta_obj_offset) { unsigned char *base_info = use_pack(p, w_curs, *curpos, NULL); off_t base_offset; |