diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-07-10 13:42:51 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-07-10 13:42:51 -0700 |
commit | 0c6435a4d6a45d5947ed4f3a1f63172cdca00d36 (patch) | |
tree | 75007f01be703ddbc08de0df1cb48451263dbba2 /apply.c | |
parent | 2db87328ef8246b7dbca90563fecc1e67c6274e6 (diff) | |
parent | 55d3426929d4d8c3dec402cabe6fb1bf27d6abad (diff) | |
download | git-0c6435a4d6a45d5947ed4f3a1f63172cdca00d36.tar.gz |
Merge branch 'ab/wildmatch'
Minor code cleanup.
* ab/wildmatch:
wildmatch: remove unused wildopts parameter
Diffstat (limited to 'apply.c')
-rw-r--r-- | apply.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2100,7 +2100,7 @@ static int use_patch(struct apply_state *state, struct patch *p) /* See if it matches any of exclude/include rule */ for (i = 0; i < state->limit_by_name.nr; i++) { struct string_list_item *it = &state->limit_by_name.items[i]; - if (!wildmatch(it->string, pathname, 0, NULL)) + if (!wildmatch(it->string, pathname, 0)) return (it->util != NULL); } |