Commit bdf96512 by Sven Strickroth

MSVC: Fix warning C4133 on x64: "function": Incompatible types - from "unsigned…

MSVC: Fix warning C4133 on x64: "function": Incompatible types - from "unsigned long *" to "size_t *"

Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent 4fe52df6
......@@ -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