1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix harmless compiler warnings about incomplete structure initializers.

FossilOrigin-Name: 604c11d1a39f09e47b6fcee0f8b1c1054f9dbbc7b2c1cf93312aeaa4b7095018
This commit is contained in:
drh
2017-07-12 18:05:54 +00:00
parent 980a89e630
commit 7ccf95dbab
4 changed files with 14 additions and 8 deletions

View File

@ -285,6 +285,9 @@ static sqlite3_module stmtModule = {
0, /* xRollback */
0, /* xFindMethod */
0, /* xRename */
0, /* xSavepoint */
0, /* xRelease */
0, /* xRollbackTo */
};
#endif /* SQLITE_OMIT_VIRTUALTABLE */