]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Correct a harmless typo in the previous check-in.
authormistachkin <mistachkin@noemail.net>
Mon, 20 Feb 2017 23:32:04 +0000 (23:32 +0000)
committermistachkin <mistachkin@noemail.net>
Mon, 20 Feb 2017 23:32:04 +0000 (23:32 +0000)
FossilOrigin-Name: 1589db012ef1389bf84399fccf96d143b2ac4c0f

manifest
manifest.uuid
src/os_win.c

index 34aa979a22eec19f60978c9f0721b693afdf2390..b9e136d68095dd7081479e127a4aa0331b071e10 100644 (file)
--- 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
index 60aeb2563f314abc3cdff5c6f286b55e47dc7b51..a4b5b9828732cfaed8e3f068e467c7baa2d312a6 100644 (file)
@@ -1 +1 @@
-96b6a98e5e4cb0ddbfcd78b05bfbfcd8976e9f32
\ No newline at end of file
+1589db012ef1389bf84399fccf96d143b2ac4c0f
\ No newline at end of file
index 8d75d8bec5a793bcc4dc56305f2951fc76b62d76..a87d7d09256dcb68ba4cba7608a80f5391c234fa 100644 (file)
@@ -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