]> git.ipfire.org Git - thirdparty/git.git/commit
run-command: mark unused async callback parameters
authorJeff King <peff@peff.net>
Fri, 19 Aug 2022 10:08:52 +0000 (06:08 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 19 Aug 2022 19:18:56 +0000 (12:18 -0700)
commite5e056b21dc5c128b5349ac336c6315943e88dee
tree0b31a053c1e1b86085dba33345fa2f5f276071d1
parent555ff1c8a4fc3bf4beab0b5bb8774fd607f95111
run-command: mark unused async callback parameters

The start_async(), etc, functions need a "proc" callback that conforms
to a particular interface. Not every callback needs every parameter
(e.g., the caller might not even ask to open an input descriptor, in
which case there is no point in the callback looking at it). Let's mark
these for -Wunused-parameter.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/receive-pack.c
convert.c
fetch-pack.c
send-pack.c