aboutsummaryrefslogtreecommitdiff
path: root/procps/powertop.c
diff options
context:
space:
mode:
authorLauri Hintsala <lauri.hintsala@bluegiga.com>2013-01-04 10:51:57 +0200
committerMike Frysinger <vapier@gentoo.org>2013-01-04 17:45:44 -0500
commitfb499c57525377ca579e310d2d29c867535dd2f6 (patch)
treee1aa063947d493ad4cda0e5cd0936252135942ad /procps/powertop.c
parenta38f9faa9fa230eb3753381c4f626acf029379fb (diff)
downloadbusybox-fb499c57525377ca579e310d2d29c867535dd2f6.tar.gz
powertop: fix error message
Application tries to use timer_stats module instead of cpufreq_stats. Error message is printed if opening of the file /proc/timer_stats fails. Signed-off-by: Lauri Hintsala <lauri.hintsala@bluegiga.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'procps/powertop.c')
-rw-r--r--procps/powertop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/powertop.c b/procps/powertop.c
index b4c45edbc..a69ee12b0 100644
--- a/procps/powertop.c
+++ b/procps/powertop.c
@@ -650,7 +650,7 @@ static void show_timerstats(void)
} else {
bb_putchar('\n');
bb_error_msg("no stats available; run as root or"
- " enable the cpufreq_stats module");
+ " enable the timer_stats module");
}
}