Merge pull request #4926 from csware/warning-c4133 Fix warning 'function': incompatible types - from 'git_cvar_value *' to 'int *' (C4133) on VS
diff --git a/src/crlf.c b/src/crlf.c
index ab2419c..df8806f 100644
--- a/src/crlf.c
+++ b/src/crlf.c
@@ -35,7 +35,7 @@ struct crlf_attrs {
int auto_crlf;
int safe_crlf;
- git_cvar_value core_eol;
+ int core_eol;
};
struct crlf_filter {