From b0d013a7aa9e7f58547a2be56400c7f9d34edec2 Mon Sep 17 00:00:00 2001
From: Richard Nyberg <rnyberg@murmeldjur.se>
Date: Sat, 16 Sep 2006 10:33:35 +0000
Subject: [PATCH] Make tests for unit changes to take rounding into account.

---
 cli/stat.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/cli/stat.c b/cli/stat.c
index d7bdd31..96f85c7 100644
--- a/cli/stat.c
+++ b/cli/stat.c
@@ -68,17 +68,16 @@ print_percent(long long part, long long whole)
 static void
 print_rate(long long rate)
 {
-    if (rate >= (1000 << 10))
+    if (rate >= 999.995 * (1 << 10))
         printf("%6.2fMB/s ", (double)rate / (1 << 20));
     else
         printf("%6.2fkB/s ", (double)rate / (1 << 10));
-
 }
 
 static void
 print_size(long long size)
 {
-    if (size >= (1000 << 20))
+    if (size >= 999.995 * (1 << 20))
         printf("%6.2fG ", (double)size / (1 << 30));
     else
         printf("%6.2fM ", (double)size / (1 << 20));