1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Fix a couple of typos in comments. No changes to code.

FossilOrigin-Name: a758465e3cfa7e0cb8749d097cd6fb5f86b60955
This commit is contained in:
mistachkin
2014-09-06 02:00:41 +00:00
parent d8b77e20fc
commit 6b9da12856
4 changed files with 12 additions and 12 deletions

View File

@@ -4229,7 +4229,7 @@ static void whereLoopOutputAdjust(
WhereTerm *pTerm, *pX;
Bitmask notAllowed = ~(pLoop->prereq|pLoop->maskSelf);
int i, j;
int nEq = 0; /* Number of = constraints not within likely()/unlike() */
int nEq = 0; /* Number of = constraints not within likely()/unlikely() */
for(i=pWC->nTerm, pTerm=pWC->a; i>0; i--, pTerm++){
if( (pTerm->wtFlags & TERM_VIRTUAL)!=0 ) break;