]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a harmless compiler warning.
authordrh <drh@noemail.net>
Wed, 24 Jun 2015 13:32:10 +0000 (13:32 +0000)
committerdrh <drh@noemail.net>
Wed, 24 Jun 2015 13:32:10 +0000 (13:32 +0000)
FossilOrigin-Name: 3b6fa95eebfa01703d9ef4f530674d17e965c512

manifest
manifest.uuid
src/btree.c

index c7f2505145b37972fa08b56348909bb98a32da1e..9ae4436971d19dad8172bed2ae7f81174f4e41fd 100644 (file)
--- a/manifest
+++ b/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.
-D 2015-06-24T13:25:34.917
+C Fix\sa\sharmless\scompiler\swarning.
+D 2015-06-24T13:32:10.104
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 1063c58075b7400d93326b0eb332b48a54f53025
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -192,7 +192,7 @@ F src/auth.c b56c78ebe40a2110fd361379f7e8162d23f92240
 F src/backup.c ff743689c4d6c5cb55ad42ed9d174b2b3e71f1e3
 F src/bitvec.c 5eb7958c3bf65210211cbcfc44eff86d0ded7c9d
 F src/btmutex.c 45a968cc85afed9b5e6cf55bf1f42f8d18107f79
-F src/btree.c 1fbed35020af5a1f6d531748223b774c57934c58
+F src/btree.c 10ff19e09c5c085bef9816f753c42cc4827de583
 F src/btree.h 969adc948e89e449220ff0ff724c94bb2a52e9f1
 F src/btreeInt.h 6ece2dd9c8e2eac05f0a8ded8772a44e96486c65
 F src/build.c b3f15255d5b16e42dafeaa638fd4f8a47c94ed70
@@ -1286,7 +1286,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 47ba7d96b1b91858ef1b592374839bc820719b95
-R d64b6eb4d6ad9abfcf40a6dbaad4e3c0
+P 659cfc9d1e9db83db171d621f248a7c2a5b183f6
+R 97f2f9e452b18631cf440c315058b8ed
 U drh
-Z 7df3ede0c0593e9eda4cbc4099bb5c77
+Z f402035ca60cd5ed94df0b50e65bb375
index e895bcc8cfd0582bd3e95e908c95934845253b83..1a972e91af05f9450f93856e97f6fedf82022f67 100644 (file)
@@ -1 +1 @@
-659cfc9d1e9db83db171d621f248a7c2a5b183f6
\ No newline at end of file
+3b6fa95eebfa01703d9ef4f530674d17e965c512
\ No newline at end of file
index 3b68af167693fd00a477e89b9b17436690921da9..81159db93d444e8956541d60bd7dc3dc56584d73 100644 (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