1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Refactor some internal object element names used by the busy handler, to

simplify analysis.

FossilOrigin-Name: 6c40c5574f4ae9795a142d01a8f84afd1b72678ea5f6bfca14a8646c4e862605
This commit is contained in:
drh
2018-03-26 16:37:53 +00:00
parent 43ff906d3e
commit 80262896d6
7 changed files with 22 additions and 22 deletions

View File

@@ -2409,7 +2409,7 @@ int sqlite3BtreeOpen(
}
pBt->openFlags = (u8)flags;
pBt->db = db;
sqlite3PagerSetBusyhandler(pBt->pPager, btreeInvokeBusyHandler, pBt);
sqlite3PagerSetBusyHandler(pBt->pPager, btreeInvokeBusyHandler, pBt);
p->pBt = pBt;
pBt->pCursor = 0;