diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-01-22 07:55:19 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-22 10:10:27 -0800 |
commit | 3bb7256281bb1d291bb705a57dc3f30b26b7c127 (patch) | |
tree | 7d0fb7bf88cabcd5c7b17a0f687f359737c6ce2d /pack.h | |
parent | 377d0276ca7446ce9fb2f6987b1e6b4ba9e7cf29 (diff) | |
download | git-3bb7256281bb1d291bb705a57dc3f30b26b7c127.tar.gz |
make "index-pack" a built-in
This required some fairly trivial packfile function 'const' cleanup,
since the builtin commands get a const char *argv[] array.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pack.h')
-rw-r--r-- | pack.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ struct pack_idx_entry { off_t offset; }; -extern char *write_idx_file(char *index_name, struct pack_idx_entry **objects, int nr_objects, unsigned char *sha1); +extern const char *write_idx_file(const char *index_name, struct pack_idx_entry **objects, int nr_objects, unsigned char *sha1); extern int check_pack_crc(struct packed_git *p, struct pack_window **w_curs, off_t offset, off_t len, unsigned int nr); extern int verify_pack(struct packed_git *); extern void fixup_pack_header_footer(int, unsigned char *, const char *, uint32_t, unsigned char *, off_t); |