diff options
Diffstat (limited to 'libs/Pcre16/src/pcre_dfa_exec.c')
-rw-r--r-- | libs/Pcre16/src/pcre_dfa_exec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/Pcre16/src/pcre_dfa_exec.c b/libs/Pcre16/src/pcre_dfa_exec.c index bc09ced3a7..f333381d08 100644 --- a/libs/Pcre16/src/pcre_dfa_exec.c +++ b/libs/Pcre16/src/pcre_dfa_exec.c @@ -2287,12 +2287,14 @@ for (;;) case OP_NOTI: if (clen > 0) { - unsigned int otherd; + pcre_uint32 otherd; #ifdef SUPPORT_UTF if (utf && d >= 128) { #ifdef SUPPORT_UCP otherd = UCD_OTHERCASE(d); +#else + otherd = d; #endif /* SUPPORT_UCP */ } else |