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

Fix a typo in a comment. No changes to code.

FossilOrigin-Name: af4756184a255f5d8a5cd276bf9f2fc3b38d9169
This commit is contained in:
drh
2011-02-24 21:10:00 +00:00
parent 03e1b40b03
commit 7f0857c437
3 changed files with 12 additions and 12 deletions

View File

@@ -6640,8 +6640,8 @@ static int pagerExclusiveLock(Pager *pPager){
assert( pPager->eLock==SHARED_LOCK || pPager->eLock==EXCLUSIVE_LOCK );
rc = pagerLockDb(pPager, EXCLUSIVE_LOCK);
if( rc!=SQLITE_OK ){
/* If the attempt to grab the pending lock failed, release the
** exclusive lock that may have been obtained instead. */
/* If the attempt to grab the exclusive lock failed, release the
** pending lock that may have been obtained instead. */
pagerUnlockDb(pPager, SHARED_LOCK);
}