diff options
Diffstat (limited to 'tools/perf/builtin-annotate.c')
| -rw-r--r-- | tools/perf/builtin-annotate.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index b10b7f005658..cf60392b1c19 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c @@ -396,10 +396,10 @@ static void print_annotate_item_stat(struct list_head *head, const char *title)  	printf("total %d, ok %d (%.1f%%), bad %d (%.1f%%)\n\n", total,  	       total_good, 100.0 * total_good / (total ?: 1),  	       total_bad, 100.0 * total_bad / (total ?: 1)); -	printf("  %-10s: %5s %5s\n", "Name", "Good", "Bad"); +	printf("  %-20s: %5s %5s\n", "Name/opcode", "Good", "Bad");  	printf("-----------------------------------------------------------\n");  	list_for_each_entry(istat, head, list) -		printf("  %-10s: %5d %5d\n", istat->name, istat->good, istat->bad); +		printf("  %-20s: %5d %5d\n", istat->name, istat->good, istat->bad);  	printf("\n");  } | 
