]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin/notes.c
notes: mark unused callback parameters
[thirdparty/git.git] / builtin / notes.c
index 80d9dfd25cad2afcb90c0219894529bcc1558cac..d5713a9fac510c0058dd2caf306f952442d01cf6 100644 (file)
@@ -113,8 +113,9 @@ static void free_note_data(struct note_data *d)
 }
 
 static int list_each_note(const struct object_id *object_oid,
-               const struct object_id *note_oid, char *note_path,
-               void *cb_data)
+                         const struct object_id *note_oid,
+                         char *note_path UNUSED,
+                         void *cb_data UNUSED)
 {
        printf("%s %s\n", oid_to_hex(note_oid), oid_to_hex(object_oid));
        return 0;