summaryrefslogtreecommitdiff
path: root/builtin/merge-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/merge-tree.c')
-rw-r--r--builtin/merge-tree.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/builtin/merge-tree.c b/builtin/merge-tree.c
index 1c063d9a41..a6e6d5b555 100644
--- a/builtin/merge-tree.c
+++ b/builtin/merge-tree.c
@@ -447,17 +447,20 @@ static int real_merge(struct merge_tree_options *o,
if (repo_get_oid_treeish(the_repository, merge_base, &base_oid))
die(_("could not parse as tree '%s'"), merge_base);
- base_tree = parse_tree_indirect(&base_oid);
+ base_tree = repo_parse_tree_indirect(the_repository,
+ &base_oid);
if (!base_tree)
die(_("unable to read tree (%s)"), oid_to_hex(&base_oid));
if (repo_get_oid_treeish(the_repository, branch1, &head_oid))
die(_("could not parse as tree '%s'"), branch1);
- parent1_tree = parse_tree_indirect(&head_oid);
+ parent1_tree = repo_parse_tree_indirect(the_repository,
+ &head_oid);
if (!parent1_tree)
die(_("unable to read tree (%s)"), oid_to_hex(&head_oid));
if (repo_get_oid_treeish(the_repository, branch2, &merge_oid))
die(_("could not parse as tree '%s'"), branch2);
- parent2_tree = parse_tree_indirect(&merge_oid);
+ parent2_tree = repo_parse_tree_indirect(the_repository,
+ &merge_oid);
if (!parent2_tree)
die(_("unable to read tree (%s)"), oid_to_hex(&merge_oid));