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>
This commit is contained in:

committed by
Junio C Hamano

parent
555ff1c8a4
commit
e5e056b21d
@ -823,7 +823,7 @@ static int everything_local(struct fetch_pack_args *args,
|
||||
return retval;
|
||||
}
|
||||
|
||||
static int sideband_demux(int in, int out, void *data)
|
||||
static int sideband_demux(int UNUSED(in), int out, void *data)
|
||||
{
|
||||
int *xd = data;
|
||||
int ret;
|
||||
|
Reference in New Issue
Block a user