Browse Source

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>
maint
Felipe Contreras 16 years ago committed by Junio C Hamano
parent
commit
9ccb3bca57
  1. 2
      builtin-add.c

2
builtin-add.c

@ -15,7 +15,7 @@ static const char * const builtin_add_usage[] = { @@ -15,7 +15,7 @@ static const char * const builtin_add_usage[] = {
"git add [options] [--] <filepattern>...",
NULL
};
static int patch_interactive = 0, add_interactive = 0;
static int patch_interactive, add_interactive;
static int take_worktree_changes;

static void fill_pathspec_matches(const char **pathspec, char *seen, int specs)

Loading…
Cancel
Save