summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-01-09 09:55:26 +0000
committerGitHub <noreply@github.com>2019-01-09 09:55:26 +0000
commit1305cd4e8dfc9612250c4392d601cc41fcc22f23 (patch)
tree0faf3c83174360d87dadbc52fc7dbaa2ab026ab4
parent924f61bfb5a3af13ade5e9963c73af18144ad19e (diff)
parent450019061be5944a84c37014eda22f99437b5140 (diff)
downloadlibgit2-1305cd4e8dfc9612250c4392d601cc41fcc22f23.tar.gz
Merge pull request #4926 from csware/warning-c4133
Fix warning 'function': incompatible types - from 'git_cvar_value *' to 'int *' (C4133) on VS
-rw-r--r--src/crlf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crlf.c b/src/crlf.c
index ab2419c4c..df8806f0e 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 {