From: mistachkin Date: Mon, 20 Feb 2017 23:32:04 +0000 (+0000) Subject: Correct a harmless typo in the previous check-in. X-Git-Tag: version-3.18.0~105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4689956b9e0dfad404a0b103d7903b8cbfddb48f;p=thirdparty%2Fsqlite.git Correct a harmless typo in the previous check-in. FossilOrigin-Name: 1589db012ef1389bf84399fccf96d143b2ac4c0f --- diff --git a/manifest b/manifest index 34aa979a22..b9e136d680 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Avoid\sunsigned\sinteger\soverflows\sfor\sSQLITE_WIN32_HEAP_INIT_SIZE\swhen\sthe\sWin32\sheap\ssubsystem\sis\sused\swith\svery\slarge\svalues\sof\sSQLITE_DEFAULT_CACHE_SIZE\sand/or\sSQLITE_DEFAULT_PAGE_SIZE. -D 2017-02-20T19:13:37.359 +C Correct\sa\sharmless\stypo\sin\sthe\sprevious\scheck-in. +D 2017-02-20T23:32:04.979 F Makefile.in edb6bcdd37748d2b1c3422ff727c748df7ffe918 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.msc a89ea37ab5928026001569f056973b9059492fe2 @@ -379,7 +379,7 @@ F src/os.h 8e976e59eb4ca1c0fca6d35ee803e38951cb0343 F src/os_common.h b2f4707a603e36811d9b1a13278bffd757857b85 F src/os_setup.h 0dbaea40a7d36bf311613d31342e0b99e2536586 F src/os_unix.c 30e2c43e4955db990e5b5a81e901f8aa74cc8820 -F src/os_win.c c97c79fe19dfb0a14c89b78280beabd9ac28acb1 +F src/os_win.c 2a6c73eef01c51a048cc4ddccd57f981afbec18a F src/os_win.h 7b073010f1451abe501be30d12f6bc599824944a F src/pager.c ff1232b3088a39806035ecfac4fffeb22717d80b F src/pager.h f2a99646c5533ffe11afa43e9e0bea74054e4efa @@ -1556,7 +1556,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 0d8a868acd74fb1d076f23fda58b841bb7e6900b -R 42e490f947871a7f92e95baf4bc40d36 +P 96b6a98e5e4cb0ddbfcd78b05bfbfcd8976e9f32 +R a6d884232566cde130b9b77412776230 U mistachkin -Z 144582bee7eff0d5ee39c945bf2670f2 +Z c97450fc686b8c32bf5204625d8622fc diff --git a/manifest.uuid b/manifest.uuid index 60aeb2563f..a4b5b98287 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -96b6a98e5e4cb0ddbfcd78b05bfbfcd8976e9f32 \ No newline at end of file +1589db012ef1389bf84399fccf96d143b2ac4c0f \ No newline at end of file diff --git a/src/os_win.c b/src/os_win.c index 8d75d8bec5..a87d7d0925 100644 --- a/src/os_win.c +++ b/src/os_win.c @@ -399,7 +399,7 @@ struct winVfsAppData { * initial size of the Win32-specific heap to exceed the maximum amount * of memory that can be specified in the call to HeapCreate. */ -#if SQLITE_WIN32_CACHE_SIZE>=SQLITE_WIN32_MAX_CACHE_SIZE +#if SQLITE_WIN32_CACHE_SIZE>SQLITE_WIN32_MAX_CACHE_SIZE # undef SQLITE_WIN32_CACHE_SIZE # define SQLITE_WIN32_CACHE_SIZE (2000) #endif