aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c b/src/shell.c
index 915b69263..a33e65b1f 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -1222,7 +1222,7 @@ static void display_scanstats(
fprintf(pArg->out, "Loop %2d: %s\n", n, zExplain);
rEstLoop *= rEst;
fprintf(pArg->out, " nLoop=%-8lld nRow=%-8lld estRow=%-8lld estRow/Loop=%-8g\n",
- nLoop, nVisit, (sqlite3_int64)rEstLoop, rEst
+ nLoop, nVisit, (sqlite3_int64)(rEstLoop+0.5), rEst
);
}
}