credential: mark unused parameter in urlmatch callback
commit8ca199511bf7867c87f0f542102c26f0fb9558b4
authorJeff King <peff@peff.net>
Tue, 29 Aug 2023 23:45:36 +0000 (29 19:45 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 30 Aug 2023 00:56:26 +0000 (29 17:56 -0700)
tree70f98a87b3eb995e84cbca37a70c3aca1128934b
parent4548b0145f17c633de5e267b6c7932c72824e9d3
credential: mark unused parameter in urlmatch callback

Our select_all() callback does not need to actually look at its
parameters, since the point is to match everything. But we need to mark
its parameters to satisfy -Wunused-parameter.

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