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

Fix a comment in btree.c. No code changes. (CVS 2774)

FossilOrigin-Name: 0d8bd133a7530fb56ecb742472865f5a72a0ea5e
This commit is contained in:
drh
2005-11-24 14:24:28 +00:00
parent 3eda040be9
commit 3a4a2d40e1
3 changed files with 11 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.270 2005/10/20 07:28:18 drh Exp $
** $Id: btree.c,v 1.271 2005/11/24 14:24:28 drh Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -792,8 +792,9 @@ static void _pageIntegrity(MemPage *pPage){
/*
** Defragment the page given. All Cells are moved to the
** beginning of the page and all free space is collected
** into one big FreeBlk at the end of the page.
** end of the page and all free space is collected into one
** big FreeBlk that occurs in between the header and cell
** index and the cell data.
*/
static int defragmentPage(MemPage *pPage){
int i; /* Loop counter */