aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/perf_counter/perf.c
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-05-25 08:45:24 -0400
committerIngo Molnar <mingo@elte.hu>2009-05-25 08:54:59 -0400
commit266dfb0b58bc4181b6158ee63a0069abaa9f3a98 (patch)
treef251e6ad609d796d93110ca09758ac0ac3852a93 /Documentation/perf_counter/perf.c
parentd3f4b3855ba87caff8f35e738c7e7e3bad0a6ab1 (diff)
perf_counter: Fix perf-$cmd invokation
Fix: $ perf-top fatal: cannot handle -top internally Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: John Kacur <jkacur@redhat.com> LKML-Reference: <20090525124559.995591577@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation/perf_counter/perf.c')
-rw-r--r--Documentation/perf_counter/perf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/perf_counter/perf.c b/Documentation/perf_counter/perf.c
index 594d270be390..1d6d7aa575a3 100644
--- a/Documentation/perf_counter/perf.c
+++ b/Documentation/perf_counter/perf.c
@@ -357,7 +357,7 @@ int main(int argc, const char **argv)
357 * die if that one cannot handle it. 357 * die if that one cannot handle it.
358 */ 358 */
359 if (!prefixcmp(cmd, "perf-")) { 359 if (!prefixcmp(cmd, "perf-")) {
360 cmd += 4; 360 cmd += 5;
361 argv[0] = cmd; 361 argv[0] = cmd;
362 handle_internal_command(argc, argv); 362 handle_internal_command(argc, argv);
363 die("cannot handle %s internally", cmd); 363 die("cannot handle %s internally", cmd);