Message ID | 20240817082238.GE10287@coredump.intra.peff.net (mailing list archive) |
---|---|
State | Accepted |
Commit | 4350676cddb961261d9cce0327f2995d3103523f |
Headers | show |
Series | marking some more unused parameters | expand |
diff --git a/oss-fuzz/dummy-cmd-main.c b/oss-fuzz/dummy-cmd-main.c index 071cb231ba..8ef776d06f 100644 --- a/oss-fuzz/dummy-cmd-main.c +++ b/oss-fuzz/dummy-cmd-main.c @@ -8,7 +8,7 @@ * executed. */ -int cmd_main(int argc, const char **argv) { +int cmd_main(int argc UNUSED, const char **argv UNUSED) { BUG("We should not execute cmd_main() from a fuzz target"); return 1; }
The dummy fuzz cmd_main() does not look at its argc/argv parameters (since it should never even be run), but has to match the usual cmd_main() declaration. Mark them to silence -Wunused-parameter. Signed-off-by: Jeff King <peff@peff.net> --- oss-fuzz/dummy-cmd-main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)