diff options
| -rw-r--r-- | lib/progress.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/progress.c b/lib/progress.c index 2da1e790b..8f0b8cb6f 100644 --- a/lib/progress.c +++ b/lib/progress.c @@ -62,7 +62,7 @@ static char *max5data(double bytes, char *max5)      sprintf(max5, "%5d", (int)bytes);      return max5;    } -  if(bytes < (9999*ONE_KILOBYTE)) { +  if(bytes < (10000*ONE_KILOBYTE)) {      sprintf(max5, "%4dk", (int)bytes/ONE_KILOBYTE);      return max5;    } | 
