diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-04-15 16:39:31 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-06 09:15:48 -0400 |
commit | 6e6b754ffdb6415723686c733f13275397e44422 (patch) | |
tree | c254a4c252fc46d932f3adac97baaabe9e66f866 | |
parent | 502fc5c72a886ff9d4d7a596e65ecc4dd5e4d458 (diff) |
perf_counter tools: Tidy up manpage details
Also fix a misalignment in usage string printing.
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
5 files changed, 6 insertions, 6 deletions
diff --git a/Documentation/perf_counter/Documentation/perf-help.txt b/Documentation/perf_counter/Documentation/perf-help.txt index f85fed5a7edb..514391818d1f 100644 --- a/Documentation/perf_counter/Documentation/perf-help.txt +++ b/Documentation/perf_counter/Documentation/perf-help.txt | |||
@@ -1,5 +1,5 @@ | |||
1 | perf-help(1) | 1 | perf-help(1) |
2 | =========== | 2 | ============ |
3 | 3 | ||
4 | NAME | 4 | NAME |
5 | ---- | 5 | ---- |
diff --git a/Documentation/perf_counter/Documentation/perf-list.txt b/Documentation/perf_counter/Documentation/perf-list.txt index aa55a71184fc..8290b9422668 100644 --- a/Documentation/perf_counter/Documentation/perf-list.txt +++ b/Documentation/perf_counter/Documentation/perf-list.txt | |||
@@ -1,5 +1,5 @@ | |||
1 | perf-list(1) | 1 | perf-list(1) |
2 | ============== | 2 | ============ |
3 | 3 | ||
4 | NAME | 4 | NAME |
5 | ---- | 5 | ---- |
@@ -8,7 +8,7 @@ perf-list - List all symbolic event types | |||
8 | SYNOPSIS | 8 | SYNOPSIS |
9 | -------- | 9 | -------- |
10 | [verse] | 10 | [verse] |
11 | 'perf list | 11 | 'perf list' |
12 | 12 | ||
13 | DESCRIPTION | 13 | DESCRIPTION |
14 | ----------- | 14 | ----------- |
diff --git a/Documentation/perf_counter/Documentation/perf-stat.txt b/Documentation/perf_counter/Documentation/perf-stat.txt index 5d95784cce4d..c368a72721d7 100644 --- a/Documentation/perf_counter/Documentation/perf-stat.txt +++ b/Documentation/perf_counter/Documentation/perf-stat.txt | |||
@@ -1,5 +1,5 @@ | |||
1 | perf-stat(1) | 1 | perf-stat(1) |
2 | ========== | 2 | ============ |
3 | 3 | ||
4 | NAME | 4 | NAME |
5 | ---- | 5 | ---- |
diff --git a/Documentation/perf_counter/Documentation/perf-top.txt b/Documentation/perf_counter/Documentation/perf-top.txt index c8eb7cfffcd5..539d01289725 100644 --- a/Documentation/perf_counter/Documentation/perf-top.txt +++ b/Documentation/perf_counter/Documentation/perf-top.txt | |||
@@ -1,5 +1,5 @@ | |||
1 | perf-top(1) | 1 | perf-top(1) |
2 | ========== | 2 | =========== |
3 | 3 | ||
4 | NAME | 4 | NAME |
5 | ---- | 5 | ---- |
diff --git a/Documentation/perf_counter/util/parse-options.c b/Documentation/perf_counter/util/parse-options.c index e4d353395a60..b3affb1658d2 100644 --- a/Documentation/perf_counter/util/parse-options.c +++ b/Documentation/perf_counter/util/parse-options.c | |||
@@ -387,7 +387,7 @@ int usage_with_options_internal(const char * const *usagestr, | |||
387 | 387 | ||
388 | fprintf(stderr, "\n usage: %s\n", *usagestr++); | 388 | fprintf(stderr, "\n usage: %s\n", *usagestr++); |
389 | while (*usagestr && **usagestr) | 389 | while (*usagestr && **usagestr) |
390 | fprintf(stderr, " or: %s\n", *usagestr++); | 390 | fprintf(stderr, " or: %s\n", *usagestr++); |
391 | while (*usagestr) { | 391 | while (*usagestr) { |
392 | fprintf(stderr, "%s%s\n", | 392 | fprintf(stderr, "%s%s\n", |
393 | **usagestr ? " " : "", | 393 | **usagestr ? " " : "", |