From 61432146ad707e969664c0151364e2d8da9fb157 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 16 May 2011 16:19:49 -0700 Subject: [PATCH] sideband_demux(): fix decl-after-stmt Signed-off-by: Junio C Hamano --- builtin-send-pack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin-send-pack.c b/builtin-send-pack.c index 3e70795ef9..dfd3d1105d 100644 --- a/builtin-send-pack.c +++ b/builtin-send-pack.c @@ -374,11 +374,11 @@ static void print_helper_status(struct ref *ref) static int sideband_demux(int in, int out, void *data) { - int *fd = data; + int *fd = data, ret; #ifndef WIN32 close(fd[1]); #endif - int ret = recv_sideband("send-pack", fd[0], out); + ret = recv_sideband("send-pack", fd[0], out); close(out); return ret; } -- 2.11.4.GIT