aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/regexp.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2022-07-21 18:37:50 +0000
committermistachkin <mistachkin@noemail.net>2022-07-21 18:37:50 +0000
commite50998859d046da292dc2383410df67fe94a400e (patch)
treeec6f83a3da044a1f50104126dd7840e92bcfc0bb /ext/misc/regexp.c
parent955301637710f18d3b44e8972f17f8cf22df4092 (diff)
downloadsqlite-e50998859d046da292dc2383410df67fe94a400e.tar.gz
sqlite-e50998859d046da292dc2383410df67fe94a400e.zip
Fix harmless compiler warning seen with MSVC.
FossilOrigin-Name: 648172de20d70532ed0fb9713b76161dd481e09bbd973c03dffb51fb61b731cc
Diffstat (limited to 'ext/misc/regexp.c')
-rw-r--r--ext/misc/regexp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/regexp.c b/ext/misc/regexp.c
index 7413ab80e..d0c8ee5cf 100644
--- a/ext/misc/regexp.c
+++ b/ext/misc/regexp.c
@@ -825,7 +825,7 @@ static void re_bytecode_func(
}
sqlite3_str_appendf(pStr, "\n");
}
- for(i=0; i<pRe->nState; i++){
+ for(i=0; (unsigned)i<pRe->nState; i++){
sqlite3_str_appendf(pStr, "%-8s %4d\n",
ReOpName[(unsigned char)pRe->aOp[i]], pRe->aArg[i]);
}