]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin/commit.c
commit: convert commit_tree* to object_id
[thirdparty/git.git] / builtin / commit.c
index 4610e3d8e3e04a70678a102cc3e0e7472089a3cf..e5974a59997fdccebe1bf545e3676ab177ebe8da 100644 (file)
@@ -1794,8 +1794,9 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
                append_merge_tag_headers(parents, &tail);
        }
 
-       if (commit_tree_extended(sb.buf, sb.len, active_cache_tree->oid.hash,
-                        parents, oid.hash, author_ident.buf, sign_commit, extra)) {
+       if (commit_tree_extended(sb.buf, sb.len, &active_cache_tree->oid,
+                                parents, &oid, author_ident.buf, sign_commit,
+                                extra)) {
                rollback_index_files();
                die(_("failed to write commit object"));
        }