From: Denis Vlasenko Date: Fri, 29 Feb 2008 07:46:19 +0000 (-0000) Subject: nmeter: fix bug where %[mf] behaves as %[mt] X-Git-Tag: 1_10_0~75 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8a2e421f26623773b9f79f322b808a757ff055c0;p=oweals%2Fbusybox.git nmeter: fix bug where %[mf] behaves as %[mt] --- diff --git a/procps/nmeter.c b/procps/nmeter.c index 573052921..7ab2865c8 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c @@ -625,7 +625,7 @@ static void collect_mem(mem_stat *s) put_question_marks(4); return; } - if (s->opt == 'f') { + if (s->opt == 't') { scale(m_total << 10); return; }