All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf c2c: remove unneeded semicolon
@ 2019-12-16 10:42 Chen Zhou
  0 siblings, 0 replies; only message in thread
From: Chen Zhou @ 2019-12-16 10:42 UTC (permalink / raw)
  To: acme, jolsa; +Cc: linux-kernel, chenzhou10

Fixes coccicheck warning:

./tools/perf/builtin-c2c.c:1706:2-3: Unneeded semicolon
./tools/perf/builtin-c2c.c:1922:2-3: Unneeded semicolon
./tools/perf/builtin-c2c.c:2948:2-3: Unneeded semicolon

Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
---
 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 e69f449..545f1f9 100644
--- a/tools/perf/builtin-c2c.c
+++ b/tools/perf/builtin-c2c.c
@@ -1703,7 +1703,7 @@ static struct c2c_dimension *get_dimension(const char *name)
 
 		if (!strcmp(dim->name, name))
 			return dim;
-	};
+	}
 
 	return NULL;
 }
@@ -1919,7 +1919,7 @@ static bool he__display(struct hist_entry *he, struct c2c_stats *stats)
 		FILTER_HITM(tot_hitm);
 	default:
 		break;
-	};
+	}
 
 #undef FILTER_HITM
 
@@ -2945,7 +2945,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";
-- 
2.7.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-12-16 10:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-16 10:42 [PATCH] perf c2c: remove unneeded semicolon Chen Zhou

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.