diff options
author | chris <> | 2006-06-22 19:36:16 +0000 |
---|---|---|
committer | chris <> | 2006-06-22 19:36:16 +0000 |
commit | 86013fabd68b173dc9021829913ebcc9ce6e9722 (patch) | |
tree | 3c917aa8b42346998cc2ec95147bfde0570ee7f9 | |
parent | 1a82863479a063af9f7bc33f909f3401d2a81ce4 (diff) | |
download | iftop-86013fabd68b173dc9021829913ebcc9ce6e9722.zip |
"options" not "config".
-rw-r--r-- | ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, config.bandwidth_in_bytes); + readable_size(i, s, sizeof s, options.log_scale ? 1000 : 1024, options.bandwidth_in_bytes); p = s + strspn(s, " "); x = get_bar_length(i * 8); mvaddch(*y + 1, x, ACS_BTEE); |