1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix a minor deviation from the coding style guidelines.

FossilOrigin-Name: 1e51bffe777587cd05bd7db5e02d6291c3eb8c1a
This commit is contained in:
drh
2012-04-27 16:38:11 +00:00
parent 70331cd725
commit a4c5860e6f
3 changed files with 8 additions and 8 deletions

View File

@@ -3003,7 +3003,7 @@ static int pagerWalFrames(
PgHdr *p;
PgHdr **ppNext = &pList;
nList = 0;
for(p=pList; (*ppNext = p); p=p->pDirty){
for(p=pList; (*ppNext = p)!=0; p=p->pDirty){
if( p->pgno<=nTruncate ){
ppNext = &p->pDirty;
nList++;