aboutsummaryrefslogtreecommitdiff
path: root/src/wal.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2013-03-23 21:00:41 +0000
committerdan <dan@noemail.net>2013-03-23 21:00:41 +0000
commitf23da96636f9de1a81c939bd7a0cc25ee1d37f49 (patch)
treece1c59a35bc86b4daae97ad7529038136d6c3ac8 /src/wal.h
parente5586a1a79f3d8e61ee6d263ec680c012ffbabfb (diff)
downloadsqlite-f23da96636f9de1a81c939bd7a0cc25ee1d37f49.tar.gz
sqlite-f23da96636f9de1a81c939bd7a0cc25ee1d37f49.zip
Replace the sqlite3_io_methods.xMremap interface with sqlite3_io_methods.xFetch and xUnfetch.
FossilOrigin-Name: 1431be95579160fb70408d43e17fc23c7b69ab4a
Diffstat (limited to 'src/wal.h')
-rw-r--r--src/wal.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wal.h b/src/wal.h
index 96d4ff9ad..ff7624af6 100644
--- a/src/wal.h
+++ b/src/wal.h
@@ -53,8 +53,7 @@
typedef struct Wal Wal;
/* Open and close a connection to a write-ahead log. */
-int sqlite3WalOpen(
- sqlite3_vfs*, Pager *, sqlite3_file*, const char *, int, i64, Wal**);
+int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *, int, i64, Wal**);
int sqlite3WalClose(Wal *pWal, int sync_flags, int, u8 *);
/* Set the limiting size of a WAL file. */