fsck: mark unused parameters in various fsck callbacks

There are a few callback functions which are used with the fsck code,
but it's natural that not all callbacks need all parameters. For
reporting, even something as obvious as "the oid of the object which had
a problem" is not always used, as some callers are only checking a
single object in the first place. And for both reporting and walking,
things like void data pointers and the fsck_options aren't always
necessary.

But since each such parameter is used by _some_ callback, we have to
keep them in the interface. Mark the unused ones in specific callbacks
to avoid triggering -Wunused-parameter.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King
2023-07-03 02:44:18 -04:00
committed by Junio C Hamano
parent cc88afad62
commit 0b4e9013f1
6 changed files with 20 additions and 18 deletions

View File

@ -92,11 +92,11 @@ static int objerror(struct object *obj, const char *err)
return -1;
}
static int fsck_error_func(struct fsck_options *o,
static int fsck_error_func(struct fsck_options *o UNUSED,
const struct object_id *oid,
enum object_type object_type,
enum fsck_msg_type msg_type,
enum fsck_msg_id msg_id,
enum fsck_msg_id msg_id UNUSED,
const char *message)
{
switch (msg_type) {
@ -121,7 +121,7 @@ static int fsck_error_func(struct fsck_options *o,
static struct object_array pending;
static int mark_object(struct object *obj, enum object_type type,
void *data, struct fsck_options *options)
void *data, struct fsck_options *options UNUSED)
{
struct object *parent = data;
@ -206,8 +206,8 @@ static int traverse_reachable(void)
return !!result;
}
static int mark_used(struct object *obj, enum object_type object_type,
void *data, struct fsck_options *options)
static int mark_used(struct object *obj, int type UNUSED,
void *data UNUSED, struct fsck_options *options UNUSED)
{
if (!obj)
return 1;