diff options
author | Xu Wang <vulab@iscas.ac.cn> | 2021-03-08 02:24:59 +0000 |
---|---|---|
committer | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2021-03-18 12:58:26 -0400 |
commit | 421d9d1bea6545543c00ffba4c83f369510de9a1 (patch) | |
tree | 76f3602a81c4e82422bf17490477be2f61aa5a7f /tools/tracing | |
parent | 2b7d2fe76f9c844af6f150d0f7a76c62dcfe7679 (diff) | |
download | linux-stable-421d9d1bea6545543c00ffba4c83f369510de9a1.tar.gz linux-stable-421d9d1bea6545543c00ffba4c83f369510de9a1.tar.bz2 linux-stable-421d9d1bea6545543c00ffba4c83f369510de9a1.zip |
tools/latency-collector: Remove unneeded semicolon
Fix semicolon.cocci warning:
tools/tracing/latency/latency-collector.c:1021:2-3: Unneeded semicolon
Link: https://lkml.kernel.org/r/20210308022459.59881-1-vulab@iscas.ac.cn
Reviewed-by: Viktor Rosendahl <Viktor.Rosendahl@bmw.de>
Signed-off-by: Xu Wang <vulab@iscas.ac.cn>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'tools/tracing')
-rw-r--r-- | tools/tracing/latency/latency-collector.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tracing/latency/latency-collector.c b/tools/tracing/latency/latency-collector.c index b69de9263ee6..3a2e6bb781a8 100644 --- a/tools/tracing/latency/latency-collector.c +++ b/tools/tracing/latency/latency-collector.c @@ -1018,7 +1018,7 @@ static long go_to_sleep(const struct entry *req) cond_timedwait(&printstate.cond, &printstate.mutex, &future); if (time_has_passed(&future)) break; - }; + } if (printstate_has_new_req_arrived(req)) delay = -1; @@ -1941,7 +1941,7 @@ static void scan_arguments(int argc, char *argv[]) if (value < 0) { warnx("TIME must be >= 0\n"); show_usage(); - ; + exit(0); } trace_enable = true; use_random_sleep = true; |