refs: convert update_ref and refs_update_ref to use struct object_id
[gitweb.git] / notes-utils.c
index 9765deb41ab02dba909ec9027701bf2fdc53f310..3a7008948c785163f68050c27aaae3c55c03bb5f 100644 (file)
@@ -49,7 +49,7 @@ void commit_notes(struct notes_tree *t, const char *msg)
 
        create_notes_commit(t, NULL, buf.buf, buf.len, commit_oid.hash);
        strbuf_insert(&buf, 0, "notes: ", 7); /* commit message starts at index 7 */
-       update_ref(buf.buf, t->update_ref, commit_oid.hash, NULL, 0,
+       update_ref(buf.buf, t->update_ref, &commit_oid, NULL, 0,
                   UPDATE_REFS_DIE_ON_ERR);
 
        strbuf_release(&buf);