diff options
Diffstat (limited to 'src/test_onefile.c')
-rw-r--r-- | src/test_onefile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_onefile.c b/src/test_onefile.c index 64d5a66a3..cd7db008c 100644 --- a/src/test_onefile.c +++ b/src/test_onefile.c @@ -222,7 +222,7 @@ static sqlite3_io_methods fs_io_methods = { 0, /* xShmMap */ 0, /* xShmLock */ 0, /* xShmBarrier */ - 0 /* xShmClose */ + 0 /* xShmUnmap */ }; @@ -243,7 +243,7 @@ static sqlite3_io_methods tmp_io_methods = { 0, /* xShmMap */ 0, /* xShmLock */ 0, /* xShmBarrier */ - 0 /* xShmClose */ + 0 /* xShmUnmap */ }; /* Useful macros used in several places */ |