From a33deeb4ae86a1e0023d23521785e972e59258d0 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Wed, 28 Feb 2018 12:20:23 +0000 Subject: win32: strncmp -> git__strncmp The win32 C library is compiled cdecl, however when configured with `STDCALL=ON`, our functions (and function pointers) will use the stdcall calling convention. You cannot set a `__stdcall` function pointer to a `__cdecl` function, so it's easier to just use our `git__strncmp` instead of sorting that mess out. --- src/ignore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ignore.c b/src/ignore.c index ddbcaf3bf..dddd7e81e 100644 --- a/src/ignore.c +++ b/src/ignore.c @@ -59,7 +59,7 @@ static int does_negate_pattern(git_attr_fnmatch *rule, git_attr_fnmatch *neg) if (neg->flags & GIT_ATTR_FNMATCH_ICASE) cmp = git__strncasecmp; else - cmp = strncmp; + cmp = git__strncmp; /* If lengths match we need to have an exact match */ if (rule->length == neg->length) { -- cgit v1.2.1