diff mbox series

[05/11] transport: mark bundle transport_options as unused

Message ID Yv9hJ0vAKqwR1BE0@coredump.intra.peff.net (mailing list archive)
State Accepted
Commit f7d5741279ce8406a274f9de8ef4eeff5ca3f149
Headers show
Series annotating unused function parameters | expand

Commit Message

Jeff King Aug. 19, 2022, 10:08 a.m. UTC
get_refs_from_bundle() is a virtual function which must match the
signature of other transports, but it doesn't look at its
transport_options at all. This isn't a bug, because not all transports
necessarily support all options. Let's mark it as unused to appease
-Wunused-parameter.

Signed-off-by: Jeff King <peff@peff.net>
---
 transport.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/transport.c b/transport.c
index b51e991e44..551cad22dd 100644
--- a/transport.c
+++ b/transport.c
@@ -142,7 +142,7 @@  static void get_refs_from_bundle_inner(struct transport *transport)
 
 static struct ref *get_refs_from_bundle(struct transport *transport,
 					int for_push,
-					struct transport_ls_refs_options *transport_options)
+					struct transport_ls_refs_options *UNUSED(transport_options))
 {
 	struct bundle_transport_data *data = transport->data;
 	struct ref *result = NULL;