summaryrefslogtreecommitdiff
path: root/apply.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-02-07 06:05:23 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-02-07 06:05:23 (GMT)
commitb2fc9d2fb02782a20d4370d7989be8b0a54f1017 (patch)
tree9771fd700c2e746ddee794f0c89b69004ad3950f /apply.c
parent7589e63648bf5224e186990931b1491f36e10a4b (diff)
parent55ad152cfbf99409859fc8f7a1d602d9c47415a4 (diff)
downloadgit-b2fc9d2fb02782a20d4370d7989be8b0a54f1017.zip
git-b2fc9d2fb02782a20d4370d7989be8b0a54f1017.tar.gz
git-b2fc9d2fb02782a20d4370d7989be8b0a54f1017.tar.bz2
Merge branch 'jk/unused-parameter-cleanup'
Code cleanup. * jk/unused-parameter-cleanup: convert: drop path parameter from actual conversion functions convert: drop len parameter from conversion checks config: drop unused parameter from maybe_remove_section() show_date_relative(): drop unused "tz" parameter column: drop unused "opts" parameter in item_length() create_bundle(): drop unused "header" parameter apply: drop unused "def" parameter from find_name_gnu() match-trees: drop unused path parameter from score functions
Diffstat (limited to 'apply.c')
-rw-r--r--apply.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apply.c b/apply.c
index f489a56..beed309 100644
--- a/apply.c
+++ b/apply.c
@@ -467,7 +467,6 @@ static char *squash_slash(char *name)
static char *find_name_gnu(struct apply_state *state,
const char *line,
- const char *def,
int p_value)
{
struct strbuf name = STRBUF_INIT;
@@ -714,7 +713,7 @@ static char *find_name(struct apply_state *state,
int terminate)
{
if (*line == '"') {
- char *name = find_name_gnu(state, line, def, p_value);
+ char *name = find_name_gnu(state, line, p_value);
if (name)
return name;
}
@@ -731,7 +730,7 @@ static char *find_name_traditional(struct apply_state *state,
size_t date_len;
if (*line == '"') {
- char *name = find_name_gnu(state, line, def, p_value);
+ char *name = find_name_gnu(state, line, p_value);
if (name)
return name;
}