]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin/fmt-merge-msg.c
Remove get_object_hash.
[thirdparty/git.git] / builtin / fmt-merge-msg.c
index 12aba984eb985d6c4bf8e08bf455f1a47a7f9f47..e5658c320ee45c208d4087e2b9761f38e0aeca92 100644 (file)
@@ -568,7 +568,7 @@ static void find_merge_parents(struct merge_parents *result,
                if (!parent)
                        continue;
                commit_list_insert(parent, &parents);
-               add_merge_parent(result, get_object_hash(*obj), get_object_hash(parent->object));
+               add_merge_parent(result, obj->oid.hash, parent->object.oid.hash);
        }
        head_commit = lookup_commit(head);
        if (head_commit)
@@ -578,7 +578,7 @@ static void find_merge_parents(struct merge_parents *result,
        while (parents) {
                struct commit *cmit = pop_commit(&parents);
                for (i = 0; i < result->nr; i++)
-                       if (!hashcmp(result->item[i].commit, get_object_hash(cmit->object)))
+                       if (!hashcmp(result->item[i].commit, cmit->object.oid.hash))
                                result->item[i].used = 1;
        }