diff options
author | drh <> | 2023-05-12 19:06:00 +0000 |
---|---|---|
committer | drh <> | 2023-05-12 19:06:00 +0000 |
commit | 59b6a2bcbe4c35720267c8c4fecce9ce1d5245c7 (patch) | |
tree | 5b5e6a76363cf0855b3c76b0ece6ca0182f9c5a5 /ext/misc/regexp.c | |
parent | 83be5586a0a0167b092604c56ba618317f6f8670 (diff) | |
download | sqlite-59b6a2bcbe4c35720267c8c4fecce9ce1d5245c7.tar.gz sqlite-59b6a2bcbe4c35720267c8c4fecce9ce1d5245c7.zip |
Fix harmless compiler warning caused by [0772ddf56713d013].
FossilOrigin-Name: f06c16a8b0e7a15ce4f7d99af3376a1bf1bfbfc0fdc048b079418ae74c619d6b
Diffstat (limited to 'ext/misc/regexp.c')
-rw-r--r-- | ext/misc/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/regexp.c b/ext/misc/regexp.c index 743c262e0..a50008ca3 100644 --- a/ext/misc/regexp.c +++ b/ext/misc/regexp.c @@ -595,7 +595,7 @@ static const char *re_subcompile_string(ReCompiled *p){ break; } case '[': { - int iFirst = p->nState; + unsigned int iFirst = p->nState; if( rePeek(p)=='^' ){ re_append(p, RE_OP_CC_EXC, 0); p->sIn.i++; |