From: mistachkin Date: Tue, 17 Nov 2015 19:16:39 +0000 (+0000) Subject: Fix harmless compiler warning. X-Git-Tag: version-3.10.0~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=81c7811fe7b7a3650f57c75b4357c2e4e225d07f;p=thirdparty%2Fsqlite.git Fix harmless compiler warning. FossilOrigin-Name: eea26b6caea37422c9b46a7a3a538b0c9575f392 --- diff --git a/manifest b/manifest index 331799161e..925e6dad3c 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Add\stestfixture\scommand\s"vfs_current_time_int64".\sReturns\sthe\svalue\sreturned\sby\sthe\sxCurrentTimeInt64\smethod\sof\sthe\sdefault\sVFS. -D 2015-11-16T15:28:54.851 +C Fix\sharmless\scompiler\swarning. +D 2015-11-17T19:16:39.306 F Makefile.in d828db6afa6c1fa060d01e33e4674408df1942a1 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.msc e928e68168df69b353300ac87c10105206653a03 @@ -1361,7 +1361,7 @@ F tool/lempar.c 3ec1463a034b37d87d782be5f6b8b10a3b1ecbe7 F tool/loadfts.c c3c64e4d5e90e8ba41159232c2189dba4be7b862 F tool/logest.c eef612f8adf4d0993dafed0416064cf50d5d33c6 F tool/mkautoconfamal.sh 4bdf61548a143e5977bd86ab93d68b694d10c8fa -F tool/mkkeywordhash.c 37f9c2e62c31384b697ede8825e2d344e98db22c +F tool/mkkeywordhash.c 06ec0b78bd4fa68c12d90ef2bdfe76b039133ff8 F tool/mkopcodec.tcl edde8adc42621b5e598127f8cdc6d52cfe21f52b F tool/mkopcodeh.tcl e04177031532b7aa9379ded50e820231ac4abd6e F tool/mkopts.tcl 66ac10d240cc6e86abd37dc908d50382f84ff46e @@ -1403,7 +1403,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P ad5fcaa583ef743d143b6c030e0d78019709fe71 -R bad7a2932fd1612d76a527d68176f4b8 -U dan -Z d6f5979512fe258a491a417c706992f9 +P f79d5b1853b3d4316ea08de8206ffca33e44c395 +R 2de2a0c3dc7ccab5c10590e17dcb5ba5 +U mistachkin +Z 23c5ff0945aadd15158110acb76ae975 diff --git a/manifest.uuid b/manifest.uuid index 6762a846fd..d48bc97cdb 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -f79d5b1853b3d4316ea08de8206ffca33e44c395 \ No newline at end of file +eea26b6caea37422c9b46a7a3a538b0c9575f392 \ No newline at end of file diff --git a/tool/mkkeywordhash.c b/tool/mkkeywordhash.c index e4d393e3fa..003ed7d66e 100644 --- a/tool/mkkeywordhash.c +++ b/tool/mkkeywordhash.c @@ -328,7 +328,7 @@ static Keyword *findById(int id){ ** output. */ int main(int argc, char **argv){ - int i, j, k, h, m; + int i, j, k, h; int bestSize, bestCount; int count; int nChar;