diff options
| author | Chen Ni <[email protected]> | 2024-07-16 07:34:05 +0000 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2024-07-31 19:58:18 +0000 |
| commit | 050f2a03aaadac13fff13f9ab7c5c1f0937ab729 (patch) | |
| tree | af6f6c469fe337e165d1c2e9a1ad6b254e9bfbef /tools/perf/ui/browsers/annotate.c | |
| parent | perf vendor events power10: Update JSON/events (diff) | |
| download | kernel-050f2a03aaadac13fff13f9ab7c5c1f0937ab729.tar.gz kernel-050f2a03aaadac13fff13f9ab7c5c1f0937ab729.zip | |
perf annotate: Convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Reviewed-by: Ian Rogers <[email protected]>
Signed-off-by: Chen Ni <[email protected]>
Cc: Adrian Hunter <[email protected]>
Cc: Ahelenia ZiemiaĆska <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Kan Liang <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Pekka Enberg <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/ui/browsers/annotate.c')
| -rw-r--r-- | tools/perf/ui/browsers/annotate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/ui/browsers/annotate.c b/tools/perf/ui/browsers/annotate.c index ea986430241e..fe991a81256b 100644 --- a/tools/perf/ui/browsers/annotate.c +++ b/tools/perf/ui/browsers/annotate.c @@ -985,7 +985,7 @@ int symbol__tui_annotate(struct map_symbol *ms, struct evsel *evsel, browser.b.width = notes->src->widths.max_line_len; browser.b.nr_entries = notes->src->nr_entries; - browser.b.entries = ¬es->src->source, + browser.b.entries = ¬es->src->source; browser.b.width += 18; /* Percentage */ if (annotate_opts.hide_src_code) |
