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

Remove unused variable. Ticket #355. (CVS 1030)

FossilOrigin-Name: 5228cecdb84a665b96750fc0dc7c81e3f50a3ce8
This commit is contained in:
drh
2003-06-17 02:57:17 +00:00
parent 7a73eb48f8
commit 44ce7e20f8
3 changed files with 11 additions and 9 deletions

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id: btree.c,v 1.94 2003/06/04 16:24:39 drh Exp $
** $Id: btree.c,v 1.95 2003/06/17 02:57:18 drh Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -471,8 +471,10 @@ static int allocateSpace(Btree *pBt, MemPage *pPage, int nByte){
FreeBlk *p;
u16 *pIdx;
int start;
int cnt = 0;
int iSize;
#ifndef NDEBUG
int cnt = 0;
#endif
assert( sqlitepager_iswriteable(pPage) );
assert( nByte==ROUNDUP(nByte) );