Commit 450019061be5944a84c37014eda22f99437b5140

Sven Strickroth 2019-01-07T16:14:51

Fix warning 'function': incompatible types - from 'git_cvar_value *' to 'int *' (C4133) on VS Signed-off-by: Sven Strickroth <email@cs-ware.de>

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 {