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

Fix a C++-ism in the code. (CVS 2430)

FossilOrigin-Name: 312587acf9e94e1d12390a9a0206c9464815e8d7
This commit is contained in:
drh
2005-03-29 13:17:45 +00:00
parent 7a5147c5c9
commit 19642e5d65
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.255 2005/03/29 02:54:03 danielk1977 Exp $
** $Id: btree.c,v 1.256 2005/03/29 13:17:46 drh Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -4153,8 +4153,8 @@ static int balance_nonroot(MemPage *pPage){
j = 0;
for(i=0; i<nNew; i++){
/* Assemble the new sibling page. */
assert( j<nMaxCells );
MemPage *pNew = apNew[i];
assert( j<nMaxCells );
assert( pNew->pgno==pgnoNew[i] );
assemblePage(pNew, cntNew[i]-j, &apCell[j], &szCell[j]);
assert( pNew->nCell>0 );