]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix another harmless compiler warning. Get the MSVC makefile working with unionvtab.
authordrh <drh@noemail.net>
Tue, 18 Jul 2017 20:28:34 +0000 (20:28 +0000)
committerdrh <drh@noemail.net>
Tue, 18 Jul 2017 20:28:34 +0000 (20:28 +0000)
FossilOrigin-Name: d49639c208ac366f6c675ac5671accc2a597558b62a51520194276c61f32d406

Makefile.msc
ext/misc/unionvtab.c
manifest
manifest.uuid

index da15cf6dbb843172f32c9ff48d00e8f0344a699c..da94288c85547af9fbddca8d5a3baadd7e85f284 100644 (file)
@@ -1418,6 +1418,7 @@ TESTEXT = \
   $(TOP)\ext\misc\series.c \
   $(TOP)\ext\misc\spellfix.c \
   $(TOP)\ext\misc\totype.c \
+  $(TOP)\ext\misc\unionvtab.c \
   $(TOP)\ext\misc\wholenumber.c
 
 # Source code to the library files needed by the test fixture
index 6c7881040a6369a3698540f76d6eb09a01b363dc..5a6dca13e3b3e8ac06bc600829368cd91337cf66 100644 (file)
@@ -133,7 +133,7 @@ static void *unionMalloc(int *pRc, int nByte){
 static char *unionStrdup(int *pRc, const char *zIn){
   char *zRet = 0;
   if( zIn ){
-    int nByte = strlen(zIn) + 1;
+    int nByte = (int)strlen(zIn) + 1;
     zRet = unionMalloc(pRc, nByte);
     if( zRet ){
       memcpy(zRet, zIn, nByte);
index bc41c2fa7ca510b4c8745f54942dcc33e52832d7..91fd0ad4e42a8a844952c9a5c2700f48aa487887 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,8 +1,8 @@
-C Suppress\sharmless\scompiler\swarnings\sin\sunion-vtab.
-D 2017-07-18T20:22:12.246
+C Fix\sanother\sharmless\scompiler\swarning.\s\sGet\sthe\sMSVC\smakefile\sworking\swith\sunionvtab.
+D 2017-07-18T20:28:34.359
 F Makefile.in d9873c9925917cca9990ee24be17eb9613a668012c85a343aef7e5536ae266e8
 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
-F Makefile.msc 20850e3e8d4d4791e0531955852d768eb06f24138214870d543abb1a47346fba
+F Makefile.msc 02b469e9dcd5b7ee63fc1fb05babc174260ee4cfa4e0ef2e48c3c6801567a016
 F README.md f5c87359573c4d255425e588a56554b50fdcc2afba4e017a2e02a43701456afd
 F VERSION 87f1498f27e398bce3da2fa8125c9879a38ed9d87e4b5fb922b351de1e25cadb
 F aclocal.m4 a5c22d164aff7ed549d53a90fa56d56955281f50
@@ -281,7 +281,7 @@ F ext/misc/showauth.c 732578f0fe4ce42d577e1c86dc89dd14a006ab52
 F ext/misc/spellfix.c a4723b6aff748a417b5091b68a46443265c40f0d
 F ext/misc/stmt.c 6f16443abb3551e3f5813bb13ba19a30e7032830015b0f92fe0c0453045c0a11
 F ext/misc/totype.c 4a167594e791abeed95e0a8db028822b5e8fe512
-F ext/misc/unionvtab.c 82e3531e24b4671d74b9e92d737ac8a6864c5d63cc7fac3c21a0bd285f3f1a9f
+F ext/misc/unionvtab.c b4d76914379f45c83783ee6120ec76ce6df64806ecee4cb127532207770c6de2
 F ext/misc/vfslog.c fe40fab5c077a40477f7e5eba994309ecac6cc95
 F ext/misc/vfsstat.c bf10ef0bc51e1ad6756629e1edb142f7a8db1178
 F ext/misc/vtshim.c 1976e6dd68dd0d64508c91a6dfab8e75f8aaf6cd
@@ -1635,7 +1635,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P a447fdf182c9090ca5b6c9c13147ae4b78d22d67f416ee7a0436ca408284c8fe
-R 8ea1a872ebb79e713f4131066de4ea3c
+P 4d147a1e28b93e267889fcb01b538d6a2a58d6b1655512c883fa5b53ddcc60a4
+R 73d814761ea520761211a9d61c42dcd5
 U drh
-Z 15a27884ea99ea71b300076329bdc8ab
+Z bc77e968137c3c63de44322de8292edf
index 1642731bbc68ff3ef419f33818b577309cec7607..f74793ef04b5d91d9810ed554a11d4d98e7f0a89 100644 (file)
@@ -1 +1 @@
-4d147a1e28b93e267889fcb01b538d6a2a58d6b1655512c883fa5b53ddcc60a4
\ No newline at end of file
+d49639c208ac366f6c675ac5671accc2a597558b62a51520194276c61f32d406
\ No newline at end of file