diff options
author | drh <drh@noemail.net> | 2017-07-12 18:05:54 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-07-12 18:05:54 +0000 |
commit | 7ccf95dbab421130f0b10de267798c96ed472018 (patch) | |
tree | f9ac4052a791e8fd3951f5dae064470ccd7488c3 /ext/misc/stmt.c | |
parent | 980a89e630dc01043a9e855ffc81e69ca3410f73 (diff) | |
download | sqlite-7ccf95dbab421130f0b10de267798c96ed472018.tar.gz sqlite-7ccf95dbab421130f0b10de267798c96ed472018.zip |
Fix harmless compiler warnings about incomplete structure initializers.
FossilOrigin-Name: 604c11d1a39f09e47b6fcee0f8b1c1054f9dbbc7b2c1cf93312aeaa4b7095018
Diffstat (limited to 'ext/misc/stmt.c')
-rw-r--r-- | ext/misc/stmt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/misc/stmt.c b/ext/misc/stmt.c index a74e6b877..b06191e93 100644 --- a/ext/misc/stmt.c +++ b/ext/misc/stmt.c @@ -285,6 +285,9 @@ static sqlite3_module stmtModule = { 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ + 0, /* xSavepoint */ + 0, /* xRelease */ + 0, /* xRollbackTo */ }; #endif /* SQLITE_OMIT_VIRTUALTABLE */ |