diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-08-12 14:09:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-12 14:09:58 -0700 |
commit | fde61a0f72ccf86114f07353d93783b3b5ef4f57 (patch) | |
tree | 394613265c7adccaf5c96da0c7bc037b3c807f2d /builtin | |
parent | Merge branch 'sb/parse-options-codeformat' (diff) | |
parent | add: remove dead code (diff) | |
download | tgif-fde61a0f72ccf86114f07353d93783b3b5ef4f57.tar.xz |
Merge branch 'sb/remove-unused-var-from-builtin-add'
* sb/remove-unused-var-from-builtin-add:
add: remove dead code
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/add.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/builtin/add.c b/builtin/add.c index 4bd98b799e..b2a5c57f0a 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -375,7 +375,6 @@ int cmd_add(int argc, const char **argv, const char *prefix) if (add_new_files) { int baselen; - struct pathspec empty_pathspec; /* Set up the default git porcelain excludes */ memset(&dir, 0, sizeof(dir)); @@ -384,7 +383,6 @@ int cmd_add(int argc, const char **argv, const char *prefix) setup_standard_excludes(&dir); } - memset(&empty_pathspec, 0, sizeof(empty_pathspec)); /* This picks up the paths that are not tracked */ baselen = fill_directory(&dir, &pathspec); if (pathspec.nr) |