]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin/notes.c
notes: convert for_each_note to struct object_id
[thirdparty/git.git] / builtin / notes.c
index f2847c41e00996f6ff129774961b5fafca513972..53fe6d34d42cec1842ddacd596c74704c2658649 100644 (file)
@@ -109,11 +109,11 @@ static void free_note_data(struct note_data *d)
        strbuf_release(&d->buf);
 }
 
-static int list_each_note(const unsigned char *object_sha1,
-               const unsigned char *note_sha1, char *note_path,
+static int list_each_note(const struct object_id *object_oid,
+               const struct object_id *note_oid, char *note_path,
                void *cb_data)
 {
-       printf("%s %s\n", sha1_to_hex(note_sha1), sha1_to_hex(object_sha1));
+       printf("%s %s\n", oid_to_hex(note_oid), oid_to_hex(object_oid));
        return 0;
 }