summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchris <>2006-06-06 09:08:37 +0000
committerchris <>2006-06-06 09:08:37 +0000
commit4a5e6e3e583ec15b2ddf5fd309a7f51548a378dd (patch)
tree3170d52bd3fb2adc5772763d7f2a117c269247e6
parent101d60bc7919ff754740d587cf3a22f24307284f (diff)
downloadiftop-4a5e6e3e583ec15b2ddf5fd309a7f51548a378dd.zip
Display scale in bytes when readings are in bytes; fix per
https://bugs.gentoo.org/show_bug.cgi?id=101926
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index 72ceeb0..2e5e0a1 100644
--- a/ui.c
+++ b/ui.c
@@ -263,7 +263,7 @@ static void draw_bar_scale(int* y) {
char s[40], *p;
int x;
/* 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, " ");
x = get_bar_length(i * 8);
mvaddch(*y + 1, x, ACS_BTEE);