diff options
author | drh <> | 2023-10-06 12:51:05 +0000 |
---|---|---|
committer | drh <> | 2023-10-06 12:51:05 +0000 |
commit | 1935887a68e8b54369852fb62abeb8268b82886e (patch) | |
tree | d1484f05fea303031f621eab2a8e783554d6eb59 /ext/misc/explain.c | |
parent | 03f7e425386f9451c6806e2e89f58fca1263aa44 (diff) | |
download | sqlite-1935887a68e8b54369852fb62abeb8268b82886e.tar.gz sqlite-1935887a68e8b54369852fb62abeb8268b82886e.zip |
Ensure that all fields of static sqlite3_module objects are explicitly
initialized, in order to hush-up nuisance compiler warnings.
FossilOrigin-Name: f3b3d712d6e58b1cb8fdebd2b6b3125080b6b3ac8c7c849a8cc1e5e778d62fe7
Diffstat (limited to 'ext/misc/explain.c')
-rw-r--r-- | ext/misc/explain.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/misc/explain.c b/ext/misc/explain.c index 009519457..726af76b9 100644 --- a/ext/misc/explain.c +++ b/ext/misc/explain.c @@ -293,6 +293,7 @@ static sqlite3_module explainModule = { 0, /* xRelease */ 0, /* xRollbackTo */ 0, /* xShadowName */ + 0 /* xIntegrity */ }; #endif /* SQLITE_OMIT_VIRTUALTABLE */ |