From 834377fe2ded06485f80a727846e990622f56f71 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Mon, 18 Jul 2011 21:08:14 +0000 Subject: [PATCH] Tweak the interactive description of CPU vs WCPU. PR: bin/158819 Submitted by: arundel Approved by: re (kib) --- contrib/top/top.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/top/top.c b/contrib/top/top.c index 4e4d86ded076..1a017a3cd20b 100644 --- a/contrib/top/top.c +++ b/contrib/top/top.c @@ -1029,8 +1029,8 @@ char *argv[]; case CMD_wcputog: ps.wcpu = !ps.wcpu; new_message(MT_standout | MT_delayed, - " Displaying %sCPU", - ps.wcpu ? "W" : ""); + " Displaying %s CPU", + ps.wcpu ? "weighted" : "raw"); header_text = format_header(uname_field); reset_display(); putchar('\r');