diff options
author | Anton Blanchard <anton@samba.org> | 2009-06-30 19:00:44 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-30 19:25:18 -0400 |
commit | 1f208ea67821703fd4de056ea6f0baa81f4ad4a5 (patch) | |
tree | 4095281591798121f0744726b6c784bb5ebe7fff /tools | |
parent | 7bec7a9134c25cecb0d7029199b59f7b1bef35b8 (diff) |
perf report: Fix -z option
Fix a copy and paste error, -z was setting the group option.
Signed-off-by: Anton Blanchard <anton@samba.org>
Cc: a.p.zijlstra@chello.nl
Cc: paulus@samba.org
LKML-Reference: <20090630230140.714204656@samba.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/builtin-top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index cf0d21f1ae10..5c2965562c5d 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c | |||
@@ -675,7 +675,7 @@ static const struct option options[] = { | |||
675 | "put the counters into a counter group"), | 675 | "put the counters into a counter group"), |
676 | OPT_STRING('s', "sym-filter", &sym_filter, "pattern", | 676 | OPT_STRING('s', "sym-filter", &sym_filter, "pattern", |
677 | "only display symbols matchig this pattern"), | 677 | "only display symbols matchig this pattern"), |
678 | OPT_BOOLEAN('z', "zero", &group, | 678 | OPT_BOOLEAN('z', "zero", &zero, |
679 | "zero history across updates"), | 679 | "zero history across updates"), |
680 | OPT_INTEGER('F', "freq", &freq, | 680 | OPT_INTEGER('F', "freq", &freq, |
681 | "profile at this frequency"), | 681 | "profile at this frequency"), |