Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147613
b: refs/heads/master
c: cf25c63
h: refs/heads/master
i:
  147611: 97b2f30
v: v3
  • Loading branch information
Ingo Molnar committed Jun 2, 2009
1 parent 7d33844 commit 11da41b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 436224a6d8bb3e29fe0cc18122f8d1f593da67b8
refs/heads/master: cf25c63c609e99bfb9303b68a7a90a56a3a32cea
8 changes: 4 additions & 4 deletions trunk/Documentation/perf_counter/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,11 @@ sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
static size_t
sort__thread_print(FILE *fp, struct hist_entry *self)
{
return fprintf(fp, " %16s:%5d", self->thread->comm ?: "", self->thread->pid);
return fprintf(fp, " %16s:%5d", self->thread->comm ?: "", self->thread->pid);
}

static struct sort_entry sort_thread = {
.header = " Command: Pid ",
.header = " Command: Pid ",
.cmp = sort__thread_cmp,
.print = sort__thread_print,
};
Expand Down Expand Up @@ -363,11 +363,11 @@ sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
static size_t
sort__dso_print(FILE *fp, struct hist_entry *self)
{
return fprintf(fp, " %s", self->dso ? self->dso->name : "<unknown>");
return fprintf(fp, " %-25s", self->dso ? self->dso->name : "<unknown>");
}

static struct sort_entry sort_dso = {
.header = " Shared Object",
.header = " Shared Object ",
.cmp = sort__dso_cmp,
.print = sort__dso_print,
};
Expand Down

0 comments on commit 11da41b

Please sign in to comment.