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

@ -1,5 +1,5 @@
C Fix\sincorrect\stype\sconversions\swhen\scopying\sfrom\sa\stable\sinto\sitself.\nTicket\s#1536.\s(CVS\s2773)
D 2005-11-24T13:15:33
C Fix\sa\scomment\sin\sbtree.c.\s\sNo\scode\schanges.\s(CVS\s2774)
D 2005-11-24T14:24:28
F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1
F Makefile.linux-gcc aee18d8a05546dcf1888bd4547e442008a49a092
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@ -33,7 +33,7 @@ F src/alter.c 149e871e1ad6648da9b72e69feb1bd1407bf5226
F src/analyze.c ea42005eed52c382fcc7ef66969e7f1858597633
F src/attach.c 4b21689700a72ae281fa85dbaff06b2a62bd49ee
F src/auth.c 31e2304bef67f44d635655f44234387ea7d21454
F src/btree.c 1ccc3b3931774a68ee0d6a8e2c8ea83f27b853fb
F src/btree.c e742aacc7ccc62e31d8725c91f2ed5e32f188faf
F src/btree.h 1ed561263ca0e335bc3e81d761c9d5ff8c22f61e
F src/build.c 8c93ae10563e8b92d3d7ea532a606424be3cb4f7
F src/callback.c 90ab4f235a2603c4cb8e6a2497091a71fb732bfa
@ -320,7 +320,7 @@ F www/tclsqlite.tcl ddcf912ea48695603c8ed7efb29f0812ef8d1b49
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
P 5045f09933f57e4ae897969710b19d09b7af6022
R 4997ed11edd337d9e88b262aa1b4e874
P a2e55a3828d74d78b0b76f956a537a0d906f3191
R 64b00ba284788c985658db51e3a3c3b4
U drh
Z 5126499ecc4de071954687fb6cbd6696
Z 3176a9c572095a5021fc91a62543e245

View File

@ -1 +1 @@
a2e55a3828d74d78b0b76f956a537a0d906f3191
0d8bd133a7530fb56ecb742472865f5a72a0ea5e

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 */