svn commit: r241730 - head/usr.bin/top

John Baldwin jhb at FreeBSD.org
Fri Oct 19 12:28:27 UTC 2012


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
 };
 


More information about the svn-src-all mailing list