mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Undo one of the "const" markers from the previous check-in because the
value needs to be changable, even if it is not actually ever changed in the current implementation. FossilOrigin-Name: c24ac3563f46fc6bcf7e45ee171afd3ae7d2faa8
This commit is contained in:
@@ -213,7 +213,7 @@ static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){
|
||||
/*
|
||||
** Table of methods for MemJournal sqlite3_file object.
|
||||
*/
|
||||
static const struct sqlite3_io_methods MemJournalMethods = {
|
||||
static struct sqlite3_io_methods MemJournalMethods = {
|
||||
1, /* iVersion */
|
||||
memjrnlClose, /* xClose */
|
||||
memjrnlRead, /* xRead */
|
||||
|
Reference in New Issue
Block a user