aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordan <Dan Kennedy>2024-12-26 14:40:11 +0000
committerdan <Dan Kennedy>2024-12-26 14:40:11 +0000
commit4e3b6a14fdcb2e09327348bcf9be3c47db43a4cf (patch)
tree29b472b6926a653671c07a0a598511d3ced9d570 /src/expr.c
parentce50282c3bf662c1e12d066bff869c53532a3d74 (diff)
parent9591d3fe93936533c8c3b0dc4d025ac999539e11 (diff)
downloadsqlite-4e3b6a14fdcb2e09327348bcf9be3c47db43a4cf.tar.gz
sqlite-4e3b6a14fdcb2e09327348bcf9be3c47db43a4cf.zip
Merge trunk changes into this branch.
FossilOrigin-Name: 3e2893097c59820def88bb4739189c9c9a4f70a98a0a72b81959658f069715f6
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c
index 37923bc84..86c966683 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -479,7 +479,7 @@ static int codeCompare(
p5 = binaryCompareP5(pLeft, pRight, jumpIfNull);
addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1,
(void*)p4, P4_COLLSEQ);
- sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5);
+ sqlite3VdbeChangeP5(pParse->pVdbe, (u16)p5);
return addr;
}