1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Fix a harmless compiler warning.

FossilOrigin-Name: 63c67a54b4d3e501f3059dcdfc6bb50c6b8dad63a34eb773e4408d9e4e780d7a
This commit is contained in:
drh
2019-08-31 20:29:28 +00:00
parent 81d25cf53d
commit 35a38e0836
3 changed files with 8 additions and 8 deletions

View File

@@ -5299,7 +5299,7 @@ static int exprSrcCount(Walker *pWalker, Expr *pExpr){
p->nThis++;
}else if( nSrc==0 || pExpr->iTable<pSrc->a[0].iCursor ){
/* In a well-formed parse tree (no name resolution errors),
/* TK_COLUMN nodes with smaller Expr.iTable values are in an
** TK_COLUMN nodes with smaller Expr.iTable values are in an
** outer context. Those are the only ones to count as "other" */
p->nOther++;
}