Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-08-13 19:14:30 +0300
committerJunio C Hamano <gitster@pobox.com>2018-08-14 00:14:43 +0300
commitd17ef3a94e6ee33be568c33496a84f15fb5fd4ee (patch)
tree32e80ac63ac228c118da52dcbb5f21b3758f1469 /pathspec.c
parentc7f3259d0d343f17848b0135612f61c075c47690 (diff)
pathspec.c: use the right index instead of the_index
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pathspec.c')
-rw-r--r--pathspec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pathspec.c b/pathspec.c
index 897cb9cbbe..6f005996fd 100644
--- a/pathspec.c
+++ b/pathspec.c
@@ -37,7 +37,7 @@ void add_pathspec_matches_against_index(const struct pathspec *pathspec,
return;
for (i = 0; i < istate->cache_nr; i++) {
const struct cache_entry *ce = istate->cache[i];
- ce_path_match(&the_index, ce, pathspec, seen);
+ ce_path_match(istate, ce, pathspec, seen);
}
}