refs: mark unused parameters in ref_store fsck callbacks

Commit ab6f79d8df (refs: set up ref consistency check infrastructure,
2024-08-08) added virtual functions to the ref store for doing fsck
checks. But the packed and reftable backends do not yet do anything.

Let's annotate them to silence -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
2024-08-17 04:22:05 -04:00
committed by Junio C Hamano
parent 9dc1e748ef
commit d1aa0fcd45
2 changed files with 4 additions and 4 deletions

View File

@ -2309,8 +2309,8 @@ done:
return ret;
}
static int reftable_be_fsck(struct ref_store *ref_store,
struct fsck_options *o)
static int reftable_be_fsck(struct ref_store *ref_store UNUSED,
struct fsck_options *o UNUSED)
{
return 0;
}