Skip to content

Commit

Permalink
Info screen: remove confusing abbreviation used for expected throughp…
Browse files Browse the repository at this point in the history
…ut (ref #31)
  • Loading branch information
Gerrit Renker committed Dec 15, 2016
1 parent 30bfd52 commit 2543650
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions info_scr.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ static void display_stats(void)

if (linkstat.data.expected_thru) {
if (linkstat.data.expected_thru >= 1024)
sprintf(tmp, " (exp: %.1f MB/s)", linkstat.data.expected_thru/1024.0);
sprintf(tmp, " (expected: %.1f MB/s)", linkstat.data.expected_thru/1024.0);
else
sprintf(tmp, " (exp: %u kB/s)", linkstat.data.expected_thru);
sprintf(tmp, " (expected: %u kB/s)", linkstat.data.expected_thru);
waddstr(w_stats, tmp);
}
}
Expand Down

0 comments on commit 2543650

Please sign in to comment.