From e2ef77cf7ccc4a030335c58654c0b100bdb75ec1 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Sat, 17 Aug 2024 04:25:16 -0400 Subject: setup: mark unused parameter in config callback This is logically a continuation of 783a86c142 (config: mark unused callback parameters, 2022-08-19), but this case was introduced much later in 4412a04fe6 (init.templateDir: consider this config setting protected, 2024-03-29). Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.c') diff --git a/setup.c b/setup.c index 5f81d9fac0..bd44ca21cc 100644 --- a/setup.c +++ b/setup.c @@ -1907,7 +1907,7 @@ struct template_dir_cb_data { }; static int template_dir_cb(const char *key, const char *value, - const struct config_context *ctx, void *d) + const struct config_context *ctx UNUSED, void *d) { struct template_dir_cb_data *data = d; -- cgit v1.2.3