remove unnecessary initializations

[jc: I needed to hand merge the changes to the updated codebase,
 so the result needs to be checked.]

Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
David Rientjes
2006-08-15 10:23:48 -07:00
committed by Junio C Hamano
parent c9c3470aec
commit 96f1e58f52
42 changed files with 163 additions and 163 deletions

View File

@ -8,10 +8,10 @@ static const char receive_pack_usage[] = "git-receive-pack <git-dir>";
static const char *unpacker[] = { "unpack-objects", NULL };
static int report_status = 0;
static int report_status;
static char capabilities[] = "report-status";
static int capabilities_sent = 0;
static int capabilities_sent;
static int show_ref(const char *path, const unsigned char *sha1)
{
@ -40,7 +40,7 @@ struct command {
char ref_name[FLEX_ARRAY]; /* more */
};
static struct command *commands = NULL;
static struct command *commands;
static int is_all_zeroes(const char *hex)
{