diff options
author | Jeff King <peff@peff.net> | 2022-08-19 12:08:52 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-08-19 21:18:56 +0200 |
commit | e5e056b21dc5c128b5349ac336c6315943e88dee (patch) | |
tree | 0b31a053c1e1b86085dba33345fa2f5f276071d1 /send-pack.c | |
parent | mark unused read_tree_recursive() callback parameters (diff) | |
download | git-e5e056b21dc5c128b5349ac336c6315943e88dee.tar.xz git-e5e056b21dc5c128b5349ac336c6315943e88dee.zip |
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>
Diffstat (limited to 'send-pack.c')
-rw-r--r-- | send-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/send-pack.c b/send-pack.c index 662f7c2aeb..7e99c64e6b 100644 --- a/send-pack.c +++ b/send-pack.c @@ -266,7 +266,7 @@ static int receive_status(struct packet_reader *reader, struct ref *refs) return ret; } -static int sideband_demux(int in, int out, void *data) +static int sideband_demux(int UNUSED(in), int out, void *data) { int *fd = data, ret; if (async_with_fork()) |