diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-10-15 22:07:00 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-16 11:05:51 +0900 |
commit | 206649672e9cae1af7f1e23ea6648b39d73b71a4 (patch) | |
tree | 609f00a212363c2cb5b2bfb291aae4929a58a88c /pack-bitmap.h | |
parent | 334dc52f49ee3e56a32142d3500fe93ef79aac67 (diff) | |
download | git-206649672e9cae1af7f1e23ea6648b39d73b71a4.tar.gz |
pack-bitmap: convert traverse_bitmap_commit_list to object_id
Convert traverse_bitmap_commit_list and the callbacks it takes to use a
pointer 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 'pack-bitmap.h')
-rw-r--r-- | pack-bitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-bitmap.h b/pack-bitmap.h index 0adcef77b5..3742a00e14 100644 --- a/pack-bitmap.h +++ b/pack-bitmap.h @@ -27,7 +27,7 @@ enum pack_bitmap_flags { }; typedef int (*show_reachable_fn)( - const unsigned char *sha1, + const struct object_id *oid, enum object_type type, int flags, uint32_t hash, |