From 89084293988e60922e51698a441ec71ab0d2363b Mon Sep 17 00:00:00 2001 From: Dave Love Date: Wed, 22 Mar 2000 14:25:38 +0000 Subject: [PATCH] (re_compile_fastmap, re_match_2_internal): Fix cast to re_opcode_t. --- src/regex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/regex.c b/src/regex.c index f97af4c9c61..d1d18c36bd3 100644 --- a/src/regex.c +++ b/src/regex.c @@ -3462,7 +3462,7 @@ re_compile_fastmap (bufp) not = (re_opcode_t)p[-1] == notsyntaxspec; k = *p++; for (j = 0; j < (1 << BYTEWIDTH); j++) - if ((SYNTAX (j) == (enum syntaxcode) k) ^ not) + if ((SYNTAX (j) == (re_opcode_t) k) ^ not) fastmap[j] = 1; break; #else /* emacs */ @@ -5363,7 +5363,7 @@ re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop) looks like multibyte form. */ c = *d, len = 1; - if ((SYNTAX (c) != (enum syntaxcode) mcnt) ^ not) + if ((SYNTAX (c) != (re_opcode_t) mcnt) ^ not) goto fail; d += len; } -- 2.11.4.GIT