diff options
author | Patryk Obara <patryk.obara@gmail.com> | 2018-01-28 01:13:16 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-01-30 19:42:36 +0100 |
commit | 5078f344591ee3c454e64ff73e6563f0a3f14950 (patch) | |
tree | 9e6bbf35347208196ce5bd7cc1c9178a06a8464f /notes-cache.c | |
parent | match-trees: convert splice_tree to object_id (diff) | |
download | git-5078f344591ee3c454e64ff73e6563f0a3f14950.tar.xz git-5078f344591ee3c454e64ff73e6563f0a3f14950.zip |
commit: convert commit_tree* to object_id
Convert the definitions and declarations of commit_tree and
commit_tree_extended to use struct object_id and adjust all usages of
these functions.
Signed-off-by: Patryk Obara <patryk.obara@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes-cache.c')
-rw-r--r-- | notes-cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/notes-cache.c b/notes-cache.c index 17ee8602b3..d2f87147cc 100644 --- a/notes-cache.c +++ b/notes-cache.c @@ -56,8 +56,8 @@ int notes_cache_write(struct notes_cache *c) if (write_notes_tree(&c->tree, tree_oid.hash)) return -1; - if (commit_tree(c->validity, strlen(c->validity), tree_oid.hash, NULL, - commit_oid.hash, NULL, NULL) < 0) + if (commit_tree(c->validity, strlen(c->validity), &tree_oid, NULL, + &commit_oid, NULL, NULL) < 0) return -1; if (update_ref("update notes cache", c->tree.update_ref, &commit_oid, NULL, 0, UPDATE_REFS_QUIET_ON_ERR) < 0) |