From: drh Date: Wed, 24 Jun 2015 13:32:10 +0000 (+0000) Subject: Fix a harmless compiler warning. X-Git-Tag: version-3.8.11~134 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c6e956f038d746a42e911870309e8abd937487f9;p=thirdparty%2Fsqlite.git Fix a harmless compiler warning. FossilOrigin-Name: 3b6fa95eebfa01703d9ef4f530674d17e965c512 --- diff --git a/manifest b/manifest index c7f2505145..9ae4436971 100644 --- 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 diff --git a/manifest.uuid b/manifest.uuid index e895bcc8cf..1a972e91af 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -659cfc9d1e9db83db171d621f248a7c2a5b183f6 \ No newline at end of file +3b6fa95eebfa01703d9ef4f530674d17e965c512 \ No newline at end of file diff --git a/src/btree.c b/src/btree.c index 3b68af1676..81159db93d 100644 --- a/src/btree.c +++ b/src/btree.c @@ -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