mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-05 15:55:57 +03:00
Fix a typo inside an assert() statement introduced by the previous commit.
FossilOrigin-Name: e3357728472d5e57db6d7eef0ce008bdee071b5b07b60e242f383440eebe85bd
This commit is contained in:
@@ -3430,7 +3430,7 @@ int sqlite3BtreeBeginTrans(Btree *p, int wrflag, int *pSchemaVersion){
|
||||
** in wal mode (since the code above opens a read-transaction and then
|
||||
** upgrades it to a write-transaction - it does not take the write lock
|
||||
** atomically). In this case change the error code to SQLITE_BUSY. */
|
||||
assert( wrFlag );
|
||||
assert( wrflag );
|
||||
rc = SQLITE_BUSY;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user