aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/regexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/misc/regexp.c')
-rw-r--r--ext/misc/regexp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/misc/regexp.c b/ext/misc/regexp.c
index 99fb453ce..f282e777f 100644
--- a/ext/misc/regexp.c
+++ b/ext/misc/regexp.c
@@ -299,9 +299,9 @@ static int re_match(ReCompiled *pRe, const unsigned char *zIn, int nIn){
}
case RE_OP_CC_EXC: {
if( c==0 ) break;
- /* fall-through */
+ /* fall-through */ goto re_op_cc_inc;
}
- case RE_OP_CC_INC: {
+ case RE_OP_CC_INC: re_op_cc_inc: {
int j = 1;
int n = pRe->aArg[x];
int hit = 0;