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

Fix indentation typo in btree.c. (CVS 3525)

FossilOrigin-Name: 5d61486f0fbd21ef992879b39d4e563fbfe46596
This commit is contained in:
drh
2006-11-30 13:05:29 +00:00
parent f7912aff8a
commit 1468438a8e
3 changed files with 10 additions and 10 deletions

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id: btree.c,v 1.330 2006/11/06 21:20:26 drh Exp $
** $Id: btree.c,v 1.331 2006/11/30 13:05:29 drh Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -3307,7 +3307,7 @@ int sqlite3BtreeMoveto(BtCursor *pCur, const void *pKey, i64 nKey, int *pRes){
assert( pCur->pPage->nCell==0 );
return SQLITE_OK;
}
for(;;){
for(;;){
int lwr, upr;
Pgno chldPg;
MemPage *pPage = pCur->pPage;