Display scale in bytes when readings are in bytes; fix per

https://bugs.gentoo.org/show_bug.cgi?id=101926
This commit is contained in:
chris
2006-06-06 09:08:37 +00:00
parent 101d60bc79
commit 4a5e6e3e58

2
ui.c
View File

@@ -263,7 +263,7 @@ static void draw_bar_scale(int* y) {
char s[40], *p; char s[40], *p;
int x; int x;
/* This 1024 vs 1000 stuff is just plain evil */ /* This 1024 vs 1000 stuff is just plain evil */
readable_size(i, s, sizeof s, options.log_scale ? 1000 : 1024, 0); readable_size(i, s, sizeof s, options.log_scale ? 1000 : 1024, config.bandwidth_in_bytes);
p = s + strspn(s, " "); p = s + strspn(s, " ");
x = get_bar_length(i * 8); x = get_bar_length(i * 8);
mvaddch(*y + 1, x, ACS_BTEE); mvaddch(*y + 1, x, ACS_BTEE);