aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2016-01-08 22:31:00 +0000
committerdrh <drh@noemail.net>2016-01-08 22:31:00 +0000
commita829992969367549de19beb925fcc27f37c05275 (patch)
treed9a8cf2ec0cfae09ff9026c91586a854e188bcb7 /src/os_unix.c
parent24dbeae6f5d736074b16f1f432d209dddd2fb32a (diff)
downloadsqlite-a829992969367549de19beb925fcc27f37c05275.tar.gz
sqlite-a829992969367549de19beb925fcc27f37c05275.zip
Typo fix in the previous commit.
FossilOrigin-Name: 52c166039831cc8423e2252019ef64a21b9d7c2a
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index bf37ae69e..a40a86678 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -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)