aboutsummaryrefslogtreecommitdiffstats
path: root/revision.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2022-08-19 06:08:35 -0400
committerJunio C Hamano <gitster@pobox.com>2022-08-19 12:18:54 -0700
commitc006e9fa59c02261738e20890f1aecd78f9db707 (patch)
treea4cf31a2702cc2221c8093e32495fde1a4e47d97 /revision.c
parent63e14ee2d69b58eae72e34df81f2cde145427037 (diff)
downloadgit-c006e9fa59c02261738e20890f1aecd78f9db707.tar.gz
refs: mark unused reflog callback parameters
Functions used with for_each_reflog_ent() need to conform to a particular interface, but not every function needs all of the parameters. Mark the unused ones to make -Wunused-parameter happy. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.c')
-rw-r--r--revision.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/revision.c b/revision.c
index 23c2bba0d8..6c7250d6a8 100644
--- a/revision.c
+++ b/revision.c
@@ -1619,8 +1619,11 @@ static void handle_one_reflog_commit(struct object_id *oid, void *cb_data)
}
static int handle_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
- const char *email, timestamp_t timestamp, int tz,
- const char *message, void *cb_data)
+ const char *UNUSED(email),
+ timestamp_t UNUSED(timestamp),
+ int UNUSED(tz),
+ const char *UNUSED(message),
+ void *cb_data)
{
handle_one_reflog_commit(ooid, cb_data);
handle_one_reflog_commit(noid, cb_data);