diff options
| author | Jeff King <peff@peff.net> | 2019-03-20 04:15:48 -0400 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2019-03-20 18:34:09 +0900 |
| commit | c5c33504c906f6bf09fe00a1a32c6c4bdb76ed0f (patch) | |
| tree | d3639f227f131786511121123d1fb6643127b2bd /dir.h | |
| parent | df351c6e676e8eea0defa00ea919ad7da6bd03f1 (diff) | |
| download | git-c5c33504c906f6bf09fe00a1a32c6c4bdb76ed0f.tar.xz | |
report_path_error(): drop unused prefix parameter
This hasn't been used since 17ddc66e70 (convert report_path_error to
take struct pathspec, 2013-07-14), as the names in the struct will have
already been prefixed when they were parsed.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.h')
| -rw-r--r-- | dir.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -220,7 +220,7 @@ extern int match_pathspec(const struct index_state *istate, const struct pathspec *pathspec, const char *name, int namelen, int prefix, char *seen, int is_dir); -extern int report_path_error(const char *ps_matched, const struct pathspec *pathspec, const char *prefix); +extern int report_path_error(const char *ps_matched, const struct pathspec *pathspec); extern int within_depth(const char *name, int namelen, int depth, int max_depth); extern int fill_directory(struct dir_struct *dir, |
