summaryrefslogtreecommitdiff
path: root/convert.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2022-10-18 01:08:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-10-18 04:24:04 (GMT)
commitdfd2a238855967035cca3bf1475e542ba2f7823b (patch)
tree1980d76569c56736de39a4ec6e7aa5f555f26e0d /convert.c
parent7506535775186a9223293e09948d253d7c9d8483 (diff)
downloadgit-dfd2a238855967035cca3bf1475e542ba2f7823b.zip
git-dfd2a238855967035cca3bf1475e542ba2f7823b.tar.gz
git-dfd2a238855967035cca3bf1475e542ba2f7823b.tar.bz2
convert: mark unused parameter in null stream filter
The null stream filter unsurprisingly does not look at its "filter" argument, since it just eats bytes. But we can't drop it, since it has to conform to the same virtual interface that real filters do. Mark the unused parameter to appease -Wunused-parameter. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'convert.c')
-rw-r--r--convert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/convert.c b/convert.c
index 95e6a52..9b67649 100644
--- a/convert.c
+++ b/convert.c
@@ -1549,7 +1549,7 @@ struct stream_filter {
struct stream_filter_vtbl *vtbl;
};
-static int null_filter_fn(struct stream_filter *filter,
+static int null_filter_fn(struct stream_filter *filter UNUSED,
const char *input, size_t *isize_p,
char *output, size_t *osize_p)
{
@@ -1568,7 +1568,7 @@ static int null_filter_fn(struct stream_filter *filter,
return 0;
}
-static void null_free_fn(struct stream_filter *filter)
+static void null_free_fn(struct stream_filter *filter UNUSED)
{
; /* nothing -- null instances are shared */
}