Skip to content

Commit 1305cd4

Browse files
authored
Merge pull request libgit2#4926 from csware/warning-c4133
Fix warning 'function': incompatible types - from 'git_cvar_value *' to 'int *' (C4133) on VS
2 parents 924f61b + 4500190 commit 1305cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crlf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct crlf_attrs {
3535

3636
int auto_crlf;
3737
int safe_crlf;
38-
git_cvar_value core_eol;
38+
int core_eol;
3939
};
4040

4141
struct crlf_filter {

0 commit comments

Comments
 (0)