diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-11-18 07:27:24 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-11-18 07:27:24 +0000 |
commit | cdcfe95cec783c69061d1d37c70ac1dbc92c0276 (patch) | |
tree | 8a281f723b34f03c6537498c4ea4a77484ccf741 /src/malloc.c | |
parent | 00e136135e380dfdf8ffe59503e0e0b518fd2cc5 (diff) | |
download | sqlite-cdcfe95cec783c69061d1d37c70ac1dbc92c0276.tar.gz sqlite-cdcfe95cec783c69061d1d37c70ac1dbc92c0276.zip |
Reduce the number of "missing initializer" warnings. (CVS 5915)
FossilOrigin-Name: d68e2795e72f1bfc0bf3b8e75cdec2e0b3d5bfcb
Diffstat (limited to 'src/malloc.c')
-rw-r--r-- | src/malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/malloc.c b/src/malloc.c index 957e04d02..8e9bbd381 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -12,7 +12,7 @@ ** ** Memory allocation functions used throughout sqlite. ** -** $Id: malloc.c,v 1.46 2008/11/17 19:18:55 danielk1977 Exp $ +** $Id: malloc.c,v 1.47 2008/11/18 07:27:24 danielk1977 Exp $ */ #include "sqliteInt.h" #include <stdarg.h> @@ -102,7 +102,7 @@ static SQLITE_WSD struct Mem0Global { */ u32 *aScratchFree; u32 *aPageFree; -} mem0 = { 62560955 }; +} mem0 = { 62560955, 0, 0, 0, 0, 0, 0, 0, 0 }; #define mem0 GLOBAL(struct Mem0Global, mem0) |