sideband_demux(): fix decl-after-stmt

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano
2011-05-16 16:19:49 -07:00
parent e07fd15b12
commit 61432146ad

View File

@ -374,11 +374,11 @@ static void print_helper_status(struct ref *ref)
static int sideband_demux(int in, int out, void *data) static int sideband_demux(int in, int out, void *data)
{ {
int *fd = data; int *fd = data, ret;
#ifndef WIN32 #ifndef WIN32
close(fd[1]); close(fd[1]);
#endif #endif
int ret = recv_sideband("send-pack", fd[0], out); ret = recv_sideband("send-pack", fd[0], out);
close(out); close(out);
return ret; return ret;
} }