Skip to content

Commit 92cce13

Browse files
tboegigitster
authored andcommitted
convert.c: remove unused parameter 'path'
Some functions get a parameter path, but don't use it. Remove the unused parameter. Signed-off-by: Torsten Bögershausen <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 320d39c commit 92cce13

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

convert.c

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ static int ident_to_worktree(const char *path, const char *src, size_t len,
696696
return 1;
697697
}
698698

699-
static enum crlf_action git_path_check_crlf(const char *path, struct git_attr_check *check)
699+
static enum crlf_action git_path_check_crlf(struct git_attr_check *check)
700700
{
701701
const char *value = check->value;
702702

@@ -713,7 +713,7 @@ static enum crlf_action git_path_check_crlf(const char *path, struct git_attr_ch
713713
return CRLF_GUESS;
714714
}
715715

716-
static enum eol git_path_check_eol(const char *path, struct git_attr_check *check)
716+
static enum eol git_path_check_eol(struct git_attr_check *check)
717717
{
718718
const char *value = check->value;
719719

@@ -726,8 +726,7 @@ static enum eol git_path_check_eol(const char *path, struct git_attr_check *chec
726726
return EOL_UNSET;
727727
}
728728

729-
static struct convert_driver *git_path_check_convert(const char *path,
730-
struct git_attr_check *check)
729+
static struct convert_driver *git_path_check_convert(struct git_attr_check *check)
731730
{
732731
const char *value = check->value;
733732
struct convert_driver *drv;
@@ -740,7 +739,7 @@ static struct convert_driver *git_path_check_convert(const char *path,
740739
return NULL;
741740
}
742741

743-
static int git_path_check_ident(const char *path, struct git_attr_check *check)
742+
static int git_path_check_ident(struct git_attr_check *check)
744743
{
745744
const char *value = check->value;
746745

@@ -783,12 +782,12 @@ static void convert_attrs(struct conv_attrs *ca, const char *path)
783782
}
784783

785784
if (!git_check_attr(path, NUM_CONV_ATTRS, ccheck)) {
786-
ca->crlf_action = git_path_check_crlf(path, ccheck + 4);
785+
ca->crlf_action = git_path_check_crlf( ccheck + 4);
787786
if (ca->crlf_action == CRLF_GUESS)
788-
ca->crlf_action = git_path_check_crlf(path, ccheck + 0);
789-
ca->ident = git_path_check_ident(path, ccheck + 1);
790-
ca->drv = git_path_check_convert(path, ccheck + 2);
791-
ca->eol_attr = git_path_check_eol(path, ccheck + 3);
787+
ca->crlf_action = git_path_check_crlf(ccheck + 0);
788+
ca->ident = git_path_check_ident(ccheck + 1);
789+
ca->drv = git_path_check_convert(ccheck + 2);
790+
ca->eol_attr = git_path_check_eol(ccheck + 3);
792791
} else {
793792
ca->drv = NULL;
794793
ca->crlf_action = CRLF_GUESS;

0 commit comments

Comments
 (0)