diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2018-03-12 02:27:21 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-14 09:23:47 -0700 |
commit | 68ee6dfc9e2ed2b6ab4c9bf17aa3b973e93f93d7 (patch) | |
tree | 9d8479a05e4f19dabb9b390a0933a7023c48d642 /bulk-checkin.h | |
parent | Eighth batch for 2.17 (diff) | |
download | tgif-68ee6dfc9e2ed2b6ab4c9bf17aa3b973e93f93d7.tar.xz |
bulk-checkin: convert index_bulk_checkin to struct object_id
Convert the index_bulk_checkin function, and the static functions it
calls, to use pointers to struct object_id.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bulk-checkin.h')
-rw-r--r-- | bulk-checkin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bulk-checkin.h b/bulk-checkin.h index fbd40fc98c..a85527318b 100644 --- a/bulk-checkin.h +++ b/bulk-checkin.h @@ -4,7 +4,7 @@ #ifndef BULK_CHECKIN_H #define BULK_CHECKIN_H -extern int index_bulk_checkin(unsigned char sha1[], +extern int index_bulk_checkin(struct object_id *oid, int fd, size_t size, enum object_type type, const char *path, unsigned flags); |