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

Fix a harmless compiler warning.

FossilOrigin-Name: 3b6fa95eebfa01703d9ef4f530674d17e965c512
This commit is contained in:
drh
2015-06-24 13:32:10 +00:00
parent 94701b048a
commit c6e956f038
3 changed files with 8 additions and 8 deletions

View File

@@ -5423,7 +5423,7 @@ static int allocateBtreePage(
/* There are pages on the freelist. Reuse one of those pages. */
Pgno iTrunk;
u8 searchList = 0; /* If the free-list must be searched for 'nearby' */
int nSearch = 0; /* Count of the number of search attempts */
u32 nSearch = 0; /* Count of the number of search attempts */
/* If eMode==BTALLOC_EXACT and a query of the pointer-map
** shows that the page 'nearby' is somewhere on the free-list, then