From 86013fabd68b173dc9021829913ebcc9ce6e9722 Mon Sep 17 00:00:00 2001 From: chris <> Date: Thu, 22 Jun 2006 19:36:16 +0000 Subject: [PATCH] "options" not "config". --- ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.c b/ui.c index 2e5e0a1..2ac540b 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, 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);