From: Brandon Casey Date: Fri, 27 Mar 2009 02:37:53 +0000 (-0500) Subject: builtin-send-pack.c: avoid empty structure initialization X-Git-Tag: v1.6.3-rc0~76^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6828f72ffee0d603b96bcde080ec13504f617669;p=git.git builtin-send-pack.c: avoid empty structure initialization The IRIX6.5 MIPSpro Compiler doesn't like it. Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- diff --git a/builtin-send-pack.c b/builtin-send-pack.c index 91c36512a..d5a1c48d0 100644 --- a/builtin-send-pack.c +++ b/builtin-send-pack.c @@ -10,8 +10,7 @@ static const char send_pack_usage[] = "git send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=] [--verbose] [--thin] [:] [...]\n" " --all and explicit specification are mutually exclusive."; -static struct send_pack_args args = { -}; +static struct send_pack_args args; static int feed_object(const unsigned char *sha1, int fd, int negative) {