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

Fix a typo made inside an assert() statement in the previous commit.

FossilOrigin-Name: f0640615f25ebe8bf2eed0e1a0f2e309471889fe
This commit is contained in:
dan
2012-02-23 16:45:42 +00:00
parent b3bdc72ded
commit bf24261b7b
4 changed files with 9 additions and 10 deletions

View File

@ -3074,7 +3074,6 @@ int sqlite3WalHeapMemory(Wal *pWal){
** or zero if it is not (or if pWal is NULL).
*/
int sqlite3WalFramesize(Wal *pWal){
int nRet = 0;
assert( pWal==0 || pWal->readLock>=0 );
return (pWal ? pWal->szPage : 0);
}