Commit 1305cd4e8dfc9612250c4392d601cc41fcc22f23

Edward Thomson 2019-01-09T09:55:26

Merge pull request #4926 from csware/warning-c4133 Fix warning 'function': incompatible types - from 'git_cvar_value *' to 'int *' (C4133) on VS

1
2
3
4
5
6
7
8
9
10
11
12
13
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 {