From: Junio C Hamano Date: Fri, 27 Mar 2009 04:01:44 +0000 (-0700) Subject: Merge branch 'db/push-cleanup' X-Git-Tag: v1.6.3-rc0~76 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/9856dd811ee0f256d067b89cbccb58d944aa9c8c?hp=9fe00538c693929d4dec29690fe7660106fe056a Merge branch 'db/push-cleanup' * db/push-cleanup: builtin-send-pack.c: avoid empty structure initialization --- diff --git a/builtin-send-pack.c b/builtin-send-pack.c index 91c36512a8..d5a1c48d0e 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) {