From: mistachkin Date: Thu, 12 Sep 2013 00:54:59 +0000 (+0000) Subject: Fix harmless compiler warning. X-Git-Tag: version-3.8.1~86 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=61b7060c4faec065f37ab36944d372ce0e7e8097;p=thirdparty%2Fsqlite.git Fix harmless compiler warning. FossilOrigin-Name: 2b510614dc6d878bd49eb428f167014f7f2e2568 --- diff --git a/manifest b/manifest index cc548c6232..e561aa5847 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Add\stest\scases\sto\scover\sTPC-H\sQ8. -D 2013-09-11T14:57:11.714 +C Fix\sharmless\scompiler\swarning. +D 2013-09-12T00:54:59.015 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -203,7 +203,7 @@ F src/os.c b4ad71336fd96f97776f75587cd9e8218288f5be F src/os.h 4a46270a64e9193af4a0aaa3bc2c66dc07c29b3f F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04 F src/os_unix.c 243fb37f47dc072fc59839ea241ff0a17c8d76e6 -F src/os_win.c bb592dfb850e4ee3e4caecce461dca74dc40936d +F src/os_win.c af9db76467add89679d3ebb451069c2f842ecd3c F src/pager.c 2aa4444ffe86e9282d03bc349a4a5e49bd77c0e8 F src/pager.h f094af9f6ececfaa8a1e93876905a4f34233fb0c F src/parse.y 27c6b4138497d6f8360ba7847da6ed48033f957f @@ -1112,7 +1112,7 @@ F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381 F tool/wherecosttest.c f407dc4c79786982a475261866a161cd007947ae F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac -P 48ed8b565b84c8fa7898c2f9817c01f7e9c9182e -R b9522deba37561644e51654b6b510026 -U drh -Z 8b5488a345e69fd6a7996d8b2149a33e +P eb5cef8351d12c0f8550dac96ee7a6e495975b5a +R bf7885bb1c586c43940718dd93c9bac5 +U mistachkin +Z ad1bbbbf78cb709221466a1e4ff47ba4 diff --git a/manifest.uuid b/manifest.uuid index d5a16fdb23..d77a97bee1 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -eb5cef8351d12c0f8550dac96ee7a6e495975b5a \ No newline at end of file +2b510614dc6d878bd49eb428f167014f7f2e2568 \ No newline at end of file diff --git a/src/os_win.c b/src/os_win.c index 72d6e8ba5c..3cadd036ab 100644 --- a/src/os_win.c +++ b/src/os_win.c @@ -3919,6 +3919,7 @@ static const sqlite3_io_methods winIoMethod = { ** sqlite3_vfs object. */ +#if 0 /* ** Convert a filename from whatever the underlying operating system ** supports for filenames into UTF-8. Space to hold the result is @@ -3937,6 +3938,7 @@ static char *winConvertToUtf8Filename(const void *zFilename){ /* caller will handle out of memory */ return zConverted; } +#endif /* ** Convert a UTF-8 filename into whatever form the underlying