From: Chen Ni Date: Thu, 10 Oct 2024 07:37:07 +0000 (+0800) Subject: selftests: timers: Remove unneeded semicolon X-Git-Tag: v6.13-rc1~161^2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=488be88a3237f840fd5992465945ed6914b46257;p=thirdparty%2Fkernel%2Flinux.git selftests: timers: Remove unneeded semicolon Remove unnecessary semicolons reported by Coccinelle/coccicheck and the semantic patch at scripts/coccinelle/misc/semicolon.cocci. Signed-off-by: Chen Ni Acked-by: John Stultz Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/timers/set-timer-lat.c b/tools/testing/selftests/timers/set-timer-lat.c index 5365e9ae61c3c..7a1a2382538cc 100644 --- a/tools/testing/selftests/timers/set-timer-lat.c +++ b/tools/testing/selftests/timers/set-timer-lat.c @@ -79,7 +79,7 @@ char *clockstring(int clockid) return "CLOCK_BOOTTIME_ALARM"; case CLOCK_TAI: return "CLOCK_TAI"; - }; + } return "UNKNOWN_CLOCKID"; }