diff options
author | drh <> | 2023-04-08 13:31:17 +0000 |
---|---|---|
committer | drh <> | 2023-04-08 13:31:17 +0000 |
commit | a9b20c09378753e875cfe6e4e86039b66919012c (patch) | |
tree | fbf1aa77565791a5a43c86271bc87ff18446b01c /src/expr.c | |
parent | 2da07d9025f24ee10a6e2432394d36a291c96ea8 (diff) | |
download | sqlite-a9b20c09378753e875cfe6e4e86039b66919012c.tar.gz sqlite-a9b20c09378753e875cfe6e4e86039b66919012c.zip |
Fix a harmless compiler warning.
FossilOrigin-Name: c9559ba62191fe7fa2a718233afaa841e2594d1fc833314bf5b0a6b775e87c35
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 81c8124de..c3afdd1cb 100644 --- a/src/expr.c +++ b/src/expr.c @@ -6441,7 +6441,6 @@ static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ default: { IndexedExpr *pIEpr; Expr tmp; - int i; assert( pParse->iSelfTab==0 ); if( (pNC->ncFlags & NC_InAggFunc)==0 ) break; if( pParse->pIdxEpr==0 ) break; |