pack-bitmap: mark unused parameters in show_object callback

This is similar to the cases in c50dca2a18 (list-objects: mark unused
callback parameters, 2023-02-24), but was added after that commit.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Jeff King 2023-08-29 19:45:13 -04:00 committed by Junio C Hamano
parent 29c9f2c366
commit d79b9f7cdb
1 changed files with 3 additions and 2 deletions

View File

@ -1101,8 +1101,9 @@ static void show_boundary_commit(struct commit *commit, void *_data)
} }
} }


static void show_boundary_object(struct object *object, static void show_boundary_object(struct object *object UNUSED,
const char *name, void *data) const char *name UNUSED,
void *data UNUSED)
{ {
BUG("should not be called"); BUG("should not be called");
} }