mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-10 01:02:56 +03:00
Fix a harmless compiler warning.
FossilOrigin-Name: 3b6fa95eebfa01703d9ef4f530674d17e965c512
This commit is contained in:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
|||||||
C Rig\sthe\sfuzzcheck\stest\sprogram\sso\sthat\sit\stimes\sout\safter\s10\sseconds\sin\scase\nof\san\sinfinite\sloop\sin\sthe\stest\scase.
|
C Fix\sa\sharmless\scompiler\swarning.
|
||||||
D 2015-06-24T13:25:34.917
|
D 2015-06-24T13:32:10.104
|
||||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||||
F Makefile.in 1063c58075b7400d93326b0eb332b48a54f53025
|
F Makefile.in 1063c58075b7400d93326b0eb332b48a54f53025
|
||||||
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
||||||
@@ -192,7 +192,7 @@ F src/auth.c b56c78ebe40a2110fd361379f7e8162d23f92240
|
|||||||
F src/backup.c ff743689c4d6c5cb55ad42ed9d174b2b3e71f1e3
|
F src/backup.c ff743689c4d6c5cb55ad42ed9d174b2b3e71f1e3
|
||||||
F src/bitvec.c 5eb7958c3bf65210211cbcfc44eff86d0ded7c9d
|
F src/bitvec.c 5eb7958c3bf65210211cbcfc44eff86d0ded7c9d
|
||||||
F src/btmutex.c 45a968cc85afed9b5e6cf55bf1f42f8d18107f79
|
F src/btmutex.c 45a968cc85afed9b5e6cf55bf1f42f8d18107f79
|
||||||
F src/btree.c 1fbed35020af5a1f6d531748223b774c57934c58
|
F src/btree.c 10ff19e09c5c085bef9816f753c42cc4827de583
|
||||||
F src/btree.h 969adc948e89e449220ff0ff724c94bb2a52e9f1
|
F src/btree.h 969adc948e89e449220ff0ff724c94bb2a52e9f1
|
||||||
F src/btreeInt.h 6ece2dd9c8e2eac05f0a8ded8772a44e96486c65
|
F src/btreeInt.h 6ece2dd9c8e2eac05f0a8ded8772a44e96486c65
|
||||||
F src/build.c b3f15255d5b16e42dafeaa638fd4f8a47c94ed70
|
F src/build.c b3f15255d5b16e42dafeaa638fd4f8a47c94ed70
|
||||||
@@ -1286,7 +1286,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
|
|||||||
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
||||||
F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
|
F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
|
||||||
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
|
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
|
||||||
P 47ba7d96b1b91858ef1b592374839bc820719b95
|
P 659cfc9d1e9db83db171d621f248a7c2a5b183f6
|
||||||
R d64b6eb4d6ad9abfcf40a6dbaad4e3c0
|
R 97f2f9e452b18631cf440c315058b8ed
|
||||||
U drh
|
U drh
|
||||||
Z 7df3ede0c0593e9eda4cbc4099bb5c77
|
Z f402035ca60cd5ed94df0b50e65bb375
|
||||||
|
@@ -1 +1 @@
|
|||||||
659cfc9d1e9db83db171d621f248a7c2a5b183f6
|
3b6fa95eebfa01703d9ef4f530674d17e965c512
|
@@ -5423,7 +5423,7 @@ static int allocateBtreePage(
|
|||||||
/* There are pages on the freelist. Reuse one of those pages. */
|
/* There are pages on the freelist. Reuse one of those pages. */
|
||||||
Pgno iTrunk;
|
Pgno iTrunk;
|
||||||
u8 searchList = 0; /* If the free-list must be searched for 'nearby' */
|
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
|
/* If eMode==BTALLOC_EXACT and a query of the pointer-map
|
||||||
** shows that the page 'nearby' is somewhere on the free-list, then
|
** shows that the page 'nearby' is somewhere on the free-list, then
|
||||||
|
Reference in New Issue
Block a user