Skip to content

Commit

Permalink
perf annotate: Align struct annotate_args
Browse files Browse the repository at this point in the history
Align fields of struct annotate_args.

Signed-off-by: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jin Yao <yao.jin@linux.intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Song Liu <songliubraving@fb.com>
Link: http://lore.kernel.org/lkml/20200204045233.474937-4-ravi.bangoria@linux.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Ravi Bangoria authored and Arnaldo Carvalho de Melo committed Feb 27, 2020
1 parent 2316f86 commit d3c0314
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tools/perf/util/annotate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1143,13 +1143,13 @@ static int disasm_line__parse(char *line, const char **namep, char **rawp)
}

struct annotate_args {
struct arch *arch;
struct map_symbol ms;
struct evsel *evsel;
struct arch *arch;
struct map_symbol ms;
struct evsel *evsel;
struct annotation_options *options;
s64 offset;
char *line;
int line_nr;
s64 offset;
char *line;
int line_nr;
};

static void annotation_line__init(struct annotation_line *al,
Expand Down

0 comments on commit d3c0314

Please sign in to comment.