From: Arun Prakash Jana Date: Fri, 24 Jan 2020 16:55:27 +0000 (+0530) Subject: PCRE 2 - fix compilation error X-Git-Tag: v3.0~45 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=196c09ab9b3c0da940f863425c37046d9ca21a2f;p=nnn.git PCRE 2 - fix compilation error --- diff --git a/src/nnn.c b/src/nnn.c index 7278b859..eda623ce 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -1876,6 +1876,7 @@ static char xchartohex(char c) static char * (*fnstrstr)(const char *haystack, const char *needle) = &strcasestr; #ifdef PCRE +static const unsigned char *tables; static int pcreflags = PCRE_NO_AUTO_CAPTURE | PCRE_EXTENDED | PCRE_CASELESS; #else static int regflags = REG_NOSUB | REG_EXTENDED | REG_ICASE;