diff options
author | drh <> | 2023-12-08 12:58:41 +0000 |
---|---|---|
committer | drh <> | 2023-12-08 12:58:41 +0000 |
commit | 9d2446dc13ff564d7938ed8fb4d454660378f830 (patch) | |
tree | e2f67c3ea123cc4e1019f39f1109d890ef0e2c90 /src | |
parent | 05980f59312fdb9b51a3d1717c4f4d22195b6328 (diff) | |
download | sqlite-9d2446dc13ff564d7938ed8fb4d454660378f830.tar.gz sqlite-9d2446dc13ff564d7938ed8fb4d454660378f830.zip |
Fix a harmless compiler warning about "confusing indentation".
FossilOrigin-Name: 34f9e9a8c4bea13f60f43062e25cd7d9422f2e7f5b371ed0ddadc9abeb3ca256
Diffstat (limited to 'src')
-rw-r--r-- | src/where.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/where.c b/src/where.c index 83f979d76..c98f92d5a 100644 --- a/src/where.c +++ b/src/where.c @@ -2020,7 +2020,8 @@ static int whereRangeScanEst( ** sample, then assume they are 4x more selective. This brings ** the estimated selectivity more in line with what it would be ** if estimated without the use of STAT4 tables. */ - if( iLwrIdx==iUprIdx ) nNew -= 20; assert( 20==sqlite3LogEst(4) ); + if( iLwrIdx==iUprIdx ){ nNew -= 20; } + assert( 20==sqlite3LogEst(4) ); }else{ nNew = 10; assert( 10==sqlite3LogEst(2) ); } |