We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e07fd15 commit 6143214Copy full SHA for 6143214
1 file changed
builtin-send-pack.c
@@ -374,11 +374,11 @@ static void print_helper_status(struct ref *ref)
374
375
static int sideband_demux(int in, int out, void *data)
376
{
377
- int *fd = data;
+ int *fd = data, ret;
378
#ifndef WIN32
379
close(fd[1]);
380
#endif
381
- int ret = recv_sideband("send-pack", fd[0], out);
+ ret = recv_sideband("send-pack", fd[0], out);
382
close(out);
383
return ret;
384
}
0 commit comments