@@ -696,7 +696,7 @@ static int ident_to_worktree(const char *path, const char *src, size_t len,
696
696
return 1 ;
697
697
}
698
698
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 )
700
700
{
701
701
const char * value = check -> value ;
702
702
@@ -713,7 +713,7 @@ static enum crlf_action git_path_check_crlf(const char *path, struct git_attr_ch
713
713
return CRLF_GUESS ;
714
714
}
715
715
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 )
717
717
{
718
718
const char * value = check -> value ;
719
719
@@ -726,8 +726,7 @@ static enum eol git_path_check_eol(const char *path, struct git_attr_check *chec
726
726
return EOL_UNSET ;
727
727
}
728
728
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 )
731
730
{
732
731
const char * value = check -> value ;
733
732
struct convert_driver * drv ;
@@ -740,7 +739,7 @@ static struct convert_driver *git_path_check_convert(const char *path,
740
739
return NULL ;
741
740
}
742
741
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 )
744
743
{
745
744
const char * value = check -> value ;
746
745
@@ -783,12 +782,12 @@ static void convert_attrs(struct conv_attrs *ca, const char *path)
783
782
}
784
783
785
784
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 );
787
786
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 );
792
791
} else {
793
792
ca -> drv = NULL ;
794
793
ca -> crlf_action = CRLF_GUESS ;
0 commit comments