summaryrefslogtreecommitdiffstats
path: root/builtin/submodule--helper.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2022-12-13 12:13:48 +0100
committerJunio C Hamano <gitster@pobox.com>2022-12-13 14:16:23 +0100
commit61bdc7c5d8b1dedc5f9c3af45c5738d14136ae90 (patch)
treee6abfd77ea8438e5f37e76f46b54b4a0bbfb1458 /builtin/submodule--helper.c
parentxdiff: mark unused parameter in xdl_call_hunk_func() (diff)
downloadgit-61bdc7c5d8b1dedc5f9c3af45c5738d14136ae90.tar.xz
git-61bdc7c5d8b1dedc5f9c3af45c5738d14136ae90.zip
diff: mark unused parameters in callbacks
The diff code provides a format_callback interface, but not every callback needs each parameter (e.g., the "opt" and "data" parameters are frequently left unused). Likewise for the output_prefix callback, the low-level change/add_remove interfaces, the callbacks used by xdi_diff(), etc. Mark unused arguments in the callback implementations to quiet -Wunused-parameter. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/submodule--helper.c')
-rw-r--r--builtin/submodule--helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
index 05f2c9bc98..6743fb27bd 100644
--- a/builtin/submodule--helper.c
+++ b/builtin/submodule--helper.c
@@ -1043,7 +1043,7 @@ static void prepare_submodule_summary(struct summary_cb *info,
}
static void submodule_summary_callback(struct diff_queue_struct *q,
- struct diff_options *options,
+ struct diff_options *options UNUSED,
void *data)
{
int i;