aboutsummaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index 08b0c46a5..d2c6ec8e8 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1448,7 +1448,6 @@ LogEst sqlite3LogEstFromDouble(double x){
*/
u64 sqlite3LogEstToInt(LogEst x){
u64 n;
- if( x<10 ) return 1;
n = x%10;
x /= 10;
if( n>=5 ) n -= 2;