aboutsummaryrefslogtreecommitdiff
path: root/src/malloc.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2010-09-28 14:26:36 +0000
committerdrh <drh@noemail.net>2010-09-28 14:26:36 +0000
commit6ac78a0d9fb4f222172b7a6310d839ef0d74942a (patch)
treecc0d175ce1396d271ddea423bda5030357b62aa1 /src/malloc.c
parente2248da1d004fe3822a16ac6f7a3a8f1ff13ac52 (diff)
downloadsqlite-6ac78a0d9fb4f222172b7a6310d839ef0d74942a.tar.gz
sqlite-6ac78a0d9fb4f222172b7a6310d839ef0d74942a.zip
Fix several harmless compiler warnings.
FossilOrigin-Name: 7be03ecc04235420e54fed8a88742243278de160
Diffstat (limited to 'src/malloc.c')
-rw-r--r--src/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc.c b/src/malloc.c
index df48f2343..d23d91db5 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -71,7 +71,7 @@ static SQLITE_WSD struct Mem0Global {
** sqlite3_soft_heap_limit() setting.
*/
int nearlyFull;
-} mem0 = { 0, 0, 0, 0, 0, 0, 0 };
+} mem0 = { 0, 0, 0, 0, 0, 0, 0, 0 };
#define mem0 GLOBAL(struct Mem0Global, mem0)