diff options
author | Brandon Williams <bmwill@google.com> | 2017-05-30 19:30:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-02 02:36:07 +0200 |
commit | c26022ea8f54649ed6b3b545dd3158907abe5d2c (patch) | |
tree | a774987137bafa841a9eed9ce3248ef83a8167e0 /revision.c | |
parent | diff: convert diff_index_show_file to struct object_id (diff) | |
download | git-c26022ea8f54649ed6b3b545dd3158907abe5d2c.tar.xz git-c26022ea8f54649ed6b3b545dd3158907abe5d2c.zip |
diff: convert diff_addremove to struct object_id
Convert diff_addremove to take a struct object_id. In addtion convert
the function pointer type 'add_remove_fn_t' to also take a struct
object_id.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/revision.c b/revision.c index 475d5b2dc1..71519193ca 100644 --- a/revision.c +++ b/revision.c @@ -401,8 +401,8 @@ static int tree_difference = REV_TREE_SAME; static void file_add_remove(struct diff_options *options, int addremove, unsigned mode, - const unsigned char *sha1, - int sha1_valid, + const struct object_id *oid, + int oid_valid, const char *fullpath, unsigned dirty_submodule) { int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD; |