From 3e67b5cbd1d2e0921d0251ccf3830aa715ee21ac Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 12 Oct 2020 00:32:50 -0700 Subject: [PATCH] clang-tidy: remove pointless return Found with readability-redundant-control-flow Signed-off-by: Rosen Penev --- asc2log.c | 1 - 1 file changed, 1 deletion(-) diff --git a/asc2log.c b/asc2log.c index 774949c..8bbd6a7 100644 --- a/asc2log.c +++ b/asc2log.c @@ -335,7 +335,6 @@ void eval_canfd(char* buf, struct timeval *date_tvp, char timestamps, int dplace calc_tv(&tv, &read_tv, date_tvp, timestamps, dplace); prframe(outfile, &tv, interface, &cf, dlen, extra_info); fflush(outfile); - return; /* No support for really strange CANFD ErrorFrames format m( */ }