]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Typo fix in the previous commit.
authordrh <drh@noemail.net>
Fri, 8 Jan 2016 22:31:00 +0000 (22:31 +0000)
committerdrh <drh@noemail.net>
Fri, 8 Jan 2016 22:31:00 +0000 (22:31 +0000)
FossilOrigin-Name: 52c166039831cc8423e2252019ef64a21b9d7c2a

manifest
manifest.uuid
src/os_unix.c

index b7b8ae7c56b8d8e3deb740c9da4372122aa9f6eb..45e5e88c6f97fbe993a0293ba2496fbeaef23d89 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C More\s#ifdef\sfixes\sfor\sthe\sunix\sVFS.
-D 2016-01-08T22:18:00.216
+C Typo\sfix\sin\sthe\sprevious\scommit.
+D 2016-01-08T22:31:00.176
 F Makefile.in 7c8cc4c2f0179efc6fa9492141d1fb65f4807054
 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
 F Makefile.msc e45d8b9b56dfa3f2cd860b2c28bd9d304513b042
@@ -317,7 +317,7 @@ F src/os.c 8fd25588eeba74068d41102d26810e216999b6c8
 F src/os.h 3e57a24e2794a94d3cf2342c6d9a884888cd96bf
 F src/os_common.h abdb9a191a367793268fe553d25bab894e986a0e
 F src/os_setup.h c9d4553b5aaa6f73391448b265b89bed0b890faa
-F src/os_unix.c 085352926299f5c5ced95c67bf6e4715f7989be0
+F src/os_unix.c 82986e1e75782b54da7822dca42d36d974fc2948
 F src/os_win.c 386fba30419e8458b13209781c2af5590eab2811
 F src/os_win.h eb7a47aa17b26b77eb97e4823f20a00b8bda12ca
 F src/pager.c 58d2593612acb6b542de6715b4af397ea1fa0a35
@@ -1406,7 +1406,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 3392f8fa2ddf2c10ffe91ddd92470040c909b36d
-R 6d9dd78f2a8c3dbacbf5b70f6d546718
+P 122c111e360761de8166e16ca151cb7260ee9bf8
+R 459dbc63e3c56e9f1bc36ac4dabf3593
 U drh
-Z 1972a905aa5c7145f504034b11e18521
+Z 6b54e5c713520cd21bd942bd06142b38
index 778dad919aa13a8c246f039ad22852fe7a508893..50a7a7442533e8313327681e970658edf64c478b 100644 (file)
@@ -1 +1 @@
-122c111e360761de8166e16ca151cb7260ee9bf8
\ No newline at end of file
+52c166039831cc8423e2252019ef64a21b9d7c2a
\ No newline at end of file
index bf37ae69edd1a94b776d55d282a10586fb4f2bdd..a40a866780f9f3b1569964c2b3192186e9c800e2 100644 (file)
@@ -446,7 +446,7 @@ static struct unix_syscall {
 #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0
   { "munmap",       (sqlite3_syscall_ptr)munmap,          0 },
 #else
-  { "munmap",       (sqlite3_syscall_ptr)9,                0 },
+  { "munmap",       (sqlite3_syscall_ptr)0,               0 },
 #endif
 #define osMunmap ((void*(*)(void*,size_t))aSyscall[23].pCurrent)