aboutsummaryrefslogtreecommitdiff
path: root/src/pragma.c
diff options
context:
space:
mode:
authordrh <>2023-10-06 13:05:42 +0000
committerdrh <>2023-10-06 13:05:42 +0000
commit91f3cd987456997941c88ea67f7a45ac9c7f52d2 (patch)
treeb419d89d72cceb7ef340e2d116fb18309a02aca3 /src/pragma.c
parentdd7f09e6c00315eff7930a8c13d4e8d659c541a9 (diff)
parent00eee7a786bf165e10de253fe3da19d1057f4aad (diff)
downloadsqlite-91f3cd987456997941c88ea67f7a45ac9c7f52d2.tar.gz
sqlite-91f3cd987456997941c88ea67f7a45ac9c7f52d2.zip
Merge compiler warning fixes from trunk into the jsonb branch.
FossilOrigin-Name: 6409d307915f8969f12df2d5ffa961645bd4db7ccfbd6f52237a217b6a867252
Diffstat (limited to 'src/pragma.c')
-rw-r--r--src/pragma.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pragma.c b/src/pragma.c
index a4e05bbdf..7c8911b2c 100644
--- a/src/pragma.c
+++ b/src/pragma.c
@@ -2900,7 +2900,8 @@ static const sqlite3_module pragmaVtabModule = {
0, /* xSavepoint */
0, /* xRelease */
0, /* xRollbackTo */
- 0 /* xShadowName */
+ 0, /* xShadowName */
+ 0 /* xIntegrity */
};
/*