1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Remove all tabs from source code files. Ticket #2556. (CVS 4198)

FossilOrigin-Name: 7550dd1d5980a399fbb06b4ed69216700f879a0b
This commit is contained in:
drh
2007-08-07 17:13:03 +00:00
parent 0a0e131c7e
commit fd131daecd
11 changed files with 46 additions and 46 deletions

View File

@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id: pager.c,v 1.351 2007/07/20 00:33:36 drh Exp $
** @(#) $Id: pager.c,v 1.352 2007/08/07 17:13:04 drh Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"
@@ -2856,8 +2856,8 @@ static int pagerSharedLock(Pager *pPager){
** a write lock, so there is never any chance of two or more
** processes opening the journal at the same time.
**
** Open the journal for read/write access. This is because in
** exclusive-access mode the file descriptor will be kept open and
** Open the journal for read/write access. This is because in
** exclusive-access mode the file descriptor will be kept open and
** possibly used for a transaction later on. On some systems, the
** OsTruncate() call used in exclusive-access mode also requires
** a read/write file handle.
@@ -3579,7 +3579,7 @@ static int pager_write(PgHdr *pPg){
PAGERID(pPager), pPg->pgno, pPg->needSync, pager_pagehash(pPg));
*(u32*)pEnd = saved;
/* An error has occured writing to the journal file. The
/* An error has occured writing to the journal file. The
** transaction will be rolled back by the layer above.
*/
if( rc!=SQLITE_OK ){