diff options
author | Len Brown <len.brown@intel.com> | 2012-11-01 00:16:34 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-11-01 00:21:43 -0400 |
commit | 39300ffb9b6666714c60735cf854e1280e4e75f4 (patch) | |
tree | a9c5c5c0a440e326815ab722fb2a4486c11e85f5 /tools/power/x86 | |
parent | bc909421a9c7083fcde795846d22b36a51a7be54 (diff) | |
download | op-kernel-dev-39300ffb9b6666714c60735cf854e1280e4e75f4.zip op-kernel-dev-39300ffb9b6666714c60735cf854e1280e4e75f4.tar.gz |
tools/power turbostat: Repair Segmentation fault when using -i option
Fix regression caused by commit 8e180f3cb6b7510a3bdf14e16ce87c9f5d86f102
(tools/power turbostat: add [-d MSR#][-D MSR#] options to print counter
deltas)
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools/power/x86')
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 2655ae9..9942dee 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -1594,7 +1594,7 @@ void cmdline(int argc, char **argv) progname = argv[0]; - while ((opt = getopt(argc, argv, "+pPSvisc:sC:m:M:")) != -1) { + while ((opt = getopt(argc, argv, "+pPSvi:sc:sC:m:M:")) != -1) { switch (opt) { case 'p': show_core_only++; |