diff options
author | drh <> | 2022-11-07 12:21:06 +0000 |
---|---|---|
committer | drh <> | 2022-11-07 12:21:06 +0000 |
commit | da01757870dabf3994a80f6f153018cd7c87b154 (patch) | |
tree | ec43473a65a6f51f1dc9eea08a1f6e297de3598f /src | |
parent | c0a18d6a5ae7e4ccc7b01c05f7d7b799fb2a2bb9 (diff) | |
download | sqlite-da01757870dabf3994a80f6f153018cd7c87b154.tar.gz sqlite-da01757870dabf3994a80f6f153018cd7c87b154.zip |
Fix requirements marks so that they match documentation corrections.
FossilOrigin-Name: 10d6189d23133006b39ea230045a918483721dd48f5558f77e57e23693097d16
Diffstat (limited to 'src')
-rw-r--r-- | src/btree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/btree.c b/src/btree.c index 2ccd09c27..df24b7b33 100644 --- a/src/btree.c +++ b/src/btree.c @@ -6255,8 +6255,8 @@ static int allocateBtreePage( assert( eMode==BTALLOC_ANY || (nearby>0 && IfNotOmitAV(pBt->autoVacuum)) ); pPage1 = pBt->pPage1; mxPage = btreePagecount(pBt); - /* EVIDENCE-OF: R-05119-02637 The 4-byte big-endian integer at offset 36 - ** stores stores the total number of pages on the freelist. */ + /* EVIDENCE-OF: R-21003-45125 The 4-byte big-endian integer at offset 36 + ** stores the total number of pages on the freelist. */ n = get4byte(&pPage1->aData[36]); testcase( n==mxPage-1 ); if( n>=mxPage ){ |