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/fileio.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/fileio.c')
-rw-r--r-- | ext/misc/fileio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/misc/fileio.c b/ext/misc/fileio.c index 7cdbd5968..70546adfc 100644 --- a/ext/misc/fileio.c +++ b/ext/misc/fileio.c @@ -983,6 +983,7 @@ static int fsdirRegister(sqlite3 *db){ 0, /* xRelease */ 0, /* xRollbackTo */ 0, /* xShadowName */ + 0 /* xIntegrity */ }; int rc = sqlite3_create_module(db, "fsdir", &fsdirModule, 0); |