[tip: perf/core] perf c2c: Remove unneeded semicolon

From: tip-bot2 for Zou Wei
Date: Fri May 08 2020 - 09:06:08 EST


The following commit has been merged into the perf/core branch of tip:

Commit-ID: 2cca512ad2fe14d060838eaf8581cda600764141
Gitweb: https://git.kernel.org/tip/2cca512ad2fe14d060838eaf8581cda600764141
Author: Zou Wei <zou_wei@xxxxxxxxxx>
AuthorDate: Tue, 28 Apr 2020 16:58:56 +08:00
Committer: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
CommitterDate: Thu, 30 Apr 2020 10:48:32 -03:00

perf c2c: Remove unneeded semicolon

Fixes coccicheck warnings:

tools/perf/builtin-c2c.c:1712:2-3: Unneeded semicolon
tools/perf/builtin-c2c.c:1928:2-3: Unneeded semicolon
tools/perf/builtin-c2c.c:2962:2-3: Unneeded semicolon

Reported-by: Hulk Robot <hulkci@xxxxxxxxxx>
Signed-off-by: Zou Wei <zou_wei@xxxxxxxxxx>
Cc: Alexander Shishkin <alexander.shishkin@xxxxxxxxxxxxxxx>
Cc: Jiri Olsa <jolsa@xxxxxxxxxx>
Cc: Mark Rutland <mark.rutland@xxxxxxx>
Cc: Namhyung Kim <namhyung@xxxxxxxxxx>
Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
Link: http://lore.kernel.org/lkml/1588064336-70456-1-git-send-email-zou_wei@xxxxxxxxxx
Signed-off-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
---
tools/perf/builtin-c2c.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/perf/builtin-c2c.c b/tools/perf/builtin-c2c.c
index 0d544c4..0e14c18 100644
--- a/tools/perf/builtin-c2c.c
+++ b/tools/perf/builtin-c2c.c
@@ -1709,7 +1709,7 @@ static struct c2c_dimension *get_dimension(const char *name)

if (!strcmp(dim->name, name))
return dim;
- };
+ }

return NULL;
}
@@ -1925,7 +1925,7 @@ static bool he__display(struct hist_entry *he, struct c2c_stats *stats)
FILTER_HITM(tot_hitm);
default:
break;
- };
+ }

#undef FILTER_HITM

@@ -2959,7 +2959,7 @@ static int perf_c2c__record(int argc, const char **argv)

rec_argv[i++] = "-e";
rec_argv[i++] = perf_mem_events__name(j);
- };
+ }

if (all_user)
rec_argv[i++] = "--all-user";