diff options
author | drh <> | 2021-10-05 18:59:05 +0000 |
---|---|---|
committer | drh <> | 2021-10-05 18:59:05 +0000 |
commit | 13ca72d011965ba63956434106e3f48c371862de (patch) | |
tree | 5d5cb635152b2592b3a95188d8b655d99fc3f0c9 /ext/misc/regexp.c | |
parent | d7ace22d8c53679986e176e7da45fe688819ba1f (diff) | |
download | sqlite-13ca72d011965ba63956434106e3f48c371862de.tar.gz sqlite-13ca72d011965ba63956434106e3f48c371862de.zip |
Fix harmless compiler warnings, mostly caused by prior efforts to get static
analyzers to run without warnings.
FossilOrigin-Name: cddd3b382a118bb16be3a602ae711fe2c2a7d1c673dd30dd3977b67ee555e666
Diffstat (limited to 'ext/misc/regexp.c')
-rw-r--r-- | ext/misc/regexp.c | 4 |
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; |