Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Oct 2012 12:28:27 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r241730 - head/usr.bin/top
Message-ID:  <201210191228.q9JCSR3c088660@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Fri Oct 19 12:28:26 2012
New Revision: 241730
URL: http://svn.freebsd.org/changeset/base/241730

Log:
  Correct the order of the MFU and MRU labels.  I had reversed them.
  
  Submitted by:	Nikolay Denev  ndenev gmail
  Pointy hat to:	jhb
  MFC after:	3 days

Modified:
  head/usr.bin/top/machine.c

Modified: head/usr.bin/top/machine.c
==============================================================================
--- head/usr.bin/top/machine.c	Fri Oct 19 12:16:29 2012	(r241729)
+++ head/usr.bin/top/machine.c	Fri Oct 19 12:28:26 2012	(r241730)
@@ -178,7 +178,7 @@ char *memorynames[] = {
 
 int arc_stats[7];
 char *arcnames[] = {
-	"K Total, ", "K MRU, ", "K MFU, ", "K Anon, ", "K Header, ", "K Other",
+	"K Total, ", "K MFU, ", "K MRU, ", "K Anon, ", "K Header, ", "K Other",
 	NULL
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210191228.q9JCSR3c088660>