diff options
author | Brandon Williams <bmwill@google.com> | 2017-05-05 12:53:34 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-06 19:15:39 +0900 |
commit | 0d32c183b636ffba6462b21ed0c844b6cb887b3f (patch) | |
tree | e715096f34c71ed0a6195215ea514e25992ff788 /builtin/add.c | |
parent | 2c1eb104543265c2d26cf36303b35e426dcacf68 (diff) | |
download | git-0d32c183b636ffba6462b21ed0c844b6cb887b3f.tar.gz |
dir: convert fill_directory to take an indexbw/dir-c-stops-relying-on-the-index
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/add.c')
-rw-r--r-- | builtin/add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/add.c b/builtin/add.c index 0b52aeced3..36cad00ae6 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -400,7 +400,7 @@ int cmd_add(int argc, const char **argv, const char *prefix) } /* This picks up the paths that are not tracked */ - baselen = fill_directory(&dir, &pathspec); + baselen = fill_directory(&dir, &the_index, &pathspec); if (pathspec.nr) seen = prune_directory(&dir, &pathspec, baselen); } |