1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Typo fix in the previous commit.

FossilOrigin-Name: 52c166039831cc8423e2252019ef64a21b9d7c2a
This commit is contained in:
drh
2016-01-08 22:31:00 +00:00
parent 24dbeae6f5
commit a829992969
3 changed files with 8 additions and 8 deletions

View 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)