Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304843
b: refs/heads/master
c: 8bf39cb
h: refs/heads/master
i:
  304841: 2de02f0
  304839: d387b59
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo committed Apr 19, 2012
1 parent c22f962 commit 255f898
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 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: 61e04b332e9417720c331eb39c96a4ccb1aa0460
refs/heads/master: 8bf39cb81bdad01ad0d830e8c3639b9e8f552d57
17 changes: 9 additions & 8 deletions trunk/tools/perf/ui/browsers/annotate.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
ui_browser__set_color(self, HE_COLORSET_CODE);

if (!*dl->line)
slsmg_write_nstring(" ", width - 18);
slsmg_write_nstring(" ", width - 10);
else if (dl->offset == -1)
slsmg_write_nstring(dl->line, width - 18);
slsmg_write_nstring(dl->line, width - 10);
else {
char bf[256], *line = dl->line;
char bf[256];
u64 addr = dl->offset;
int printed, color = -1;

Expand Down Expand Up @@ -114,12 +114,12 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
dl->ins->ops->scnprintf(dl->ins, bf, sizeof(bf),
!ab->use_offset ? dl->operands : NULL,
dl->target);
line = bf;
slsmg_write_nstring(" ", 7);
printed += 7;
}
slsmg_write_nstring(" ", 2);
printed += 2;
} else
scnprintf(bf, sizeof(bf), " %-6.6s %s", dl->name, dl->operands);

slsmg_write_nstring(line, width - 18 - printed);
slsmg_write_nstring(bf, width - 10 - printed);
}

if (current_entry)
Expand Down Expand Up @@ -653,6 +653,7 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
.priv = &ms,
.use_navkeypressed = true,
},
.use_offset = true,
};
int ret = -1;

Expand Down

0 comments on commit 255f898

Please sign in to comment.