diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-09-11 10:29:15 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-09-11 10:29:15 +0000 |
commit | 55a25a1201e1ea491eefffcb9da92b5afea35cdb (patch) | |
tree | b82180a320a06277dac3406d9b02956c938c94ac /src/pager.c | |
parent | 67fd7a9a9828dc18d8ccdbc73ac4dc2946ff9f52 (diff) | |
download | sqlite-55a25a1201e1ea491eefffcb9da92b5afea35cdb.tar.gz sqlite-55a25a1201e1ea491eefffcb9da92b5afea35cdb.zip |
Fix a couple of problems with variable initializations picked up by stricter compilers. (CVS 5691)
FossilOrigin-Name: f4293d148007515eaf8eb9738f62554a963abe8e
Diffstat (limited to 'src/pager.c')
-rw-r--r-- | src/pager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pager.c b/src/pager.c index 68c80472b..6a4cbd1dc 100644 --- a/src/pager.c +++ b/src/pager.c @@ -18,7 +18,7 @@ ** file simultaneously, or one process from reading the database while ** another is writing. ** -** @(#) $Id: pager.c,v 1.488 2008/09/08 15:35:07 danielk1977 Exp $ +** @(#) $Id: pager.c,v 1.489 2008/09/11 10:29:16 danielk1977 Exp $ */ #ifndef SQLITE_OMIT_DISKIO #include "sqliteInt.h" @@ -578,7 +578,7 @@ static void seekJournalHdr(Pager *pPager){ */ static int zeroJournalHdr(Pager *pPager, int doTruncate){ int rc = SQLITE_OK; - static const char zeroHdr[28] = {}; + static const char zeroHdr[28] = {0}; if( pPager->journalOff ){ i64 iLimit = pPager->journalSizeLimit; |