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:

committed by
Junio C Hamano

parent
c9c3470aec
commit
96f1e58f52
@ -15,16 +15,16 @@
|
||||
#define DO_NONFLAGS 8
|
||||
static int filter = ~0;
|
||||
|
||||
static const char *def = NULL;
|
||||
static const char *def;
|
||||
|
||||
#define NORMAL 0
|
||||
#define REVERSED 1
|
||||
static int show_type = NORMAL;
|
||||
static int symbolic = 0;
|
||||
static int abbrev = 0;
|
||||
static int output_sq = 0;
|
||||
static int symbolic;
|
||||
static int abbrev;
|
||||
static int output_sq;
|
||||
|
||||
static int revs_count = 0;
|
||||
static int revs_count;
|
||||
|
||||
/*
|
||||
* Some arguments are relevant "revision" arguments,
|
||||
|
Reference in New Issue
Block a user