Message ID | 20230829234531.GM227214@coredump.intra.peff.net (mailing list archive) |
---|---|
State | Accepted |
Commit | 2b0e46f563c21429e45f7c57a22b1337b039a3f9 |
Headers | show |
Series | Yet Another Unused Parameter Series | expand |
diff --git a/worktree.c b/worktree.c index b8cf29e6a1..a56a6c2a3d 100644 --- a/worktree.c +++ b/worktree.c @@ -581,8 +581,10 @@ static void repair_gitfile(struct worktree *wt, strbuf_release(&dotgit); } -static void repair_noop(int iserr, const char *path, const char *msg, - void *cb_data) +static void repair_noop(int iserr UNUSED, + const char *path UNUSED, + const char *msg UNUSED, + void *cb_data UNUSED) { /* nothing */ }
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> --- worktree.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)