fetch: mark unused parameter in ref_transaction callback
commitccf759cdb7e11e9fcfcbad02685472ce2c7a7d9a
authorJeff King <peff@peff.net>
Tue, 29 Aug 2023 23:45:37 +0000 (29 19:45 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 30 Aug 2023 00:56:26 +0000 (29 17:56 -0700)
treeb84b64fc0879e04403c6dfd3cf0beb5e79833b05
parent8ca199511bf7867c87f0f542102c26f0fb9558b4
fetch: mark unused parameter in ref_transaction callback

Since this callback is just trying to collect the set of queued tag
updates, there is no need for it to look at old_oid at all. Mark it as
unused to appease -Wunused-parameter.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fetch.c