worktree: mark unused parameters in noop repair callback

The noop repair callback unsurprisingly does not look at any of its
parameters. Mark them as unused to silence -Wunused-parameter.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Jeff King 2023-08-29 19:45:31 -04:00 committed by Junio C Hamano
parent 06b217fc1f
commit 2b0e46f563
1 changed files with 4 additions and 2 deletions

View File

@ -581,8 +581,10 @@ static void repair_gitfile(struct worktree *wt,
strbuf_release(&dotgit); strbuf_release(&dotgit);
} }


static void repair_noop(int iserr, const char *path, const char *msg, static void repair_noop(int iserr UNUSED,
void *cb_data) const char *path UNUSED,
const char *msg UNUSED,
void *cb_data UNUSED)
{ {
/* nothing */ /* nothing */
} }