Commit 686c70c5 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

use the %dk display for one extra k of progress

parent f94502ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  }