diff options
| author | Junio C Hamano <gitster@pobox.com> | 2022-08-29 14:55:12 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-08-29 14:55:12 -0700 |
| commit | a0ab573bb1157bee2d5567c9fc22ff96a4d8c6bb (patch) | |
| tree | 36f01c5734dc0541c61493651e234ab7f64dc09e /attr.c | |
| parent | a572a5d4c1a00f276b4b6ed4e86cdb3d9aed51dc (diff) | |
| parent | 12a58f9014e037b4dcee5e427844461b960151d3 (diff) | |
| download | git-a0ab573bb1157bee2d5567c9fc22ff96a4d8c6bb.tar.xz | |
Merge branch 'jk/unused-fixes'
Code clean-up to remove unused function parameters.
* jk/unused-fixes:
xdiff: drop unused mmfile parameters from xdl_do_patience_diff()
reflog: assert PARSE_OPT_NONEG in parse-options callbacks
reftable: drop unused parameter from reader_seek_linear()
verify_one_sparse(): drop unused parameters
match_pathname(): drop unused "flags" parameter
log-tree: drop unused commit param in remerge_diff()
xdiff: drop unused mmfile parameters from xdl_do_histogram_diff()
Diffstat (limited to 'attr.c')
| -rw-r--r-- | attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1023,7 +1023,7 @@ static int path_matches(const char *pathname, int pathlen, } return match_pathname(pathname, pathlen - isdir, base, baselen, - pattern, prefix, pat->patternlen, pat->flags); + pattern, prefix, pat->patternlen); } static int macroexpand_one(struct all_attrs_item *all_attrs, int nr, int rem); |
