git add: trivial codestyle cleanup
Global static variables don't need to be initialized to 0/NULL. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
aa98eb3d65
commit
9ccb3bca57
@ -15,7 +15,7 @@ static const char * const builtin_add_usage[] = {
|
|||||||
"git add [options] [--] <filepattern>...",
|
"git add [options] [--] <filepattern>...",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
static int patch_interactive = 0, add_interactive = 0;
|
static int patch_interactive, add_interactive;
|
||||||
static int take_worktree_changes;
|
static int take_worktree_changes;
|
||||||
|
|
||||||
static void fill_pathspec_matches(const char **pathspec, char *seen, int specs)
|
static void fill_pathspec_matches(const char **pathspec, char *seen, int specs)
|
||||||
|
Loading…
Reference in New Issue
Block a user