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

Fix harmless compiler warnings.

FossilOrigin-Name: 4a7b4ee011fea911b981206c242e3d5553303b52
This commit is contained in:
drh
2013-02-07 09:33:56 +00:00
parent 2bfe1df01b
commit 928d9c6209
6 changed files with 15 additions and 16 deletions

View File

@@ -263,8 +263,8 @@ static int lookupName(
assert( pTab!=0 && pTab->zName!=0 );
assert( pTab->nCol>0 );
if( pItem->pSelect && (pItem->pSelect->selFlags & SF_NestedFrom)!=0 ){
ExprList *pEList = pItem->pSelect->pEList;
int hit = 0;
pEList = pItem->pSelect->pEList;
for(j=0; j<pEList->nExpr; j++){
if( sqlite3MatchSpanName(pEList->a[j].zSpan, zCol, zTab, zDb) ){
cnt++;