]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a harmless compiler warning in the mkkeywordhash.c utility program.
authordrh <drh@noemail.net>
Wed, 18 Apr 2012 10:13:20 +0000 (10:13 +0000)
committerdrh <drh@noemail.net>
Wed, 18 Apr 2012 10:13:20 +0000 (10:13 +0000)
FossilOrigin-Name: 6015200beb3be7ec141ce36de694278e3ba11a02

manifest
manifest.uuid
tool/mkkeywordhash.c

index d4dc0900b60313dd9e5e57f309c19c3f82d795c8..3fe3810d0ee145c45c00805c77ec49813b3a35cc 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sa\stypecast\sproblem\sin\slemon\sthat\scould\scause\sproblems\son\s64-bit\smachines.
-D 2012-04-18T09:59:56.596
+C Fix\sa\sharmless\scompiler\swarning\sin\sthe\smkkeywordhash.c\sutility\sprogram.
+D 2012-04-18T10:13:20.705
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 2f37e468503dbe79d35c9f6dffcf3fae1ae9ec20
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -965,7 +965,7 @@ F tool/genfkey.test 4196a8928b78f51d54ef58e99e99401ab2f0a7e5
 F tool/getlock.c f4c39b651370156cae979501a7b156bdba50e7ce
 F tool/lemon.c 90f46af31c92b940fec25b491f39409fd95dcdfa
 F tool/lempar.c 01ca97f87610d1dac6d8cd96ab109ab1130e76dc
-F tool/mkkeywordhash.c d2e6b4a5965e23afb80fbe74bb54648cd371f309
+F tool/mkkeywordhash.c bb52064aa614e1426445e4b2b9b00eeecd23cc79
 F tool/mkopts.tcl 66ac10d240cc6e86abd37dc908d50382f84ff46e
 F tool/mkspeedsql.tcl a1a334d288f7adfe6e996f2e712becf076745c97
 F tool/mksqlite3c-noext.tcl 105023aa86f696a74b1d6a4929d1e1c3baf9471c
@@ -1000,7 +1000,7 @@ F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
 F tool/warnings-clang.sh a8a0a3babda96dfb1ff51adda3cbbf3dfb7266c2
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
-P 430bb59d798286a86c351de92c429345f016b3f0
-R 113ef85b9c52f3c834e9782e53798156
+P 4a5641cc0aa4c49762f4fe73dab4a6612631c0d2
+R 9331d8fd78cc0caf6b6610e6acb41aab
 U drh
-Z ce1db25d2f193d39fb492e3f8624ae7b
+Z a487d3c4edeae5b06a7f847c65e40582
index 82b3f8f616225168c6ea7d63a188a9c3ee6505c0..b3be873e6baad005fe8492b3fd071284e2e45e44 100644 (file)
@@ -1 +1 @@
-4a5641cc0aa4c49762f4fe73dab4a6612631c0d2
\ No newline at end of file
+6015200beb3be7ec141ce36de694278e3ba11a02
\ No newline at end of file
index 509aeef9ea0a4e3b579e9bcf45004f8fbda9807f..4e5ba8f1a8d2d259d2b6e1a1f91f9c2333b26faf 100644 (file)
@@ -360,7 +360,7 @@ int main(int argc, char **argv){
   /* Fill in the lengths of strings and hashes for all entries. */
   for(i=0; i<nKeyword; i++){
     Keyword *p = &aKeywordTable[i];
-    p->len = strlen(p->zName);
+    p->len = (int)strlen(p->zName);
     assert( p->len<sizeof(p->zOrigName) );
     strcpy(p->zOrigName, p->zName);
     totalLen += p->len;