Unverified Commit ad1548e4 by Edward Thomson Committed by GitHub

Merge pull request #5317 from csware/size_t

MSVC: Fix warning C4133 on x64: "function": Incompatible types - from "unsigned long *" to "size_t *"
parents 4fe52df6 bdf96512
......@@ -78,7 +78,7 @@ out:
int git_regexp_compile(git_regexp *r, const char *pattern, int flags)
{
unsigned char errmsg[1024];
unsigned long erroff;
PCRE2_SIZE erroff;
int error, cflags = 0;
if (flags & GIT_REGEXP_ICASE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment