1
0
mirror of https://github.com/git/git synced 2024-07-05 00:58:49 +00:00

replace: mark unused parameter in ref callback

We don't look at the "flags" parameter, which is natural for something
that is just printing the contents of the replace refs. But let's mark
it to appease -Wunused-parameter.

This probably should have been part of 63e14ee2d6 (refs: mark unused
each_ref_fn parameters, 2022-08-19), but I missed it as this one is a
repo_each_ref_fn, which takes an extra repository argument.

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:25 -04:00 committed by Junio C Hamano
parent ee550abcce
commit 80d4e5f3a5

View File

@ -49,7 +49,7 @@ struct show_data {
static int show_reference(struct repository *r, const char *refname,
const struct object_id *oid,
int flag, void *cb_data)
int flag UNUSED, void *cb_data)
{
struct show_data *data = cb_data;