replace: mark unused parameter in ref callback
commit80d4e5f3a5c6d2e07b8e8f82801d8e8c4445fefd
authorJeff King <peff@peff.net>
Mon, 3 Jul 2023 06:44:25 +0000 (3 02:44 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 14 Jul 2023 00:24:00 +0000 (13 17:24 -0700)
tree655c1dc0ca36df7585a8362a1e339b9cd92ed4d7
parentee550abcce86e27c0be3593a4c9af4dc7322039a
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>
builtin/replace.c