From: Zhang Mingyu Date: Fri, 5 Nov 2021 01:42:08 +0000 (+0000) Subject: selftests: timers: Remove unneeded semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7ace3e9ae0492a6b33f5af8b8e1a6f1e0390cc15;p=linux.git selftests: timers: Remove unneeded semicolon Eliminate the following coccinelle check warning: tools/testing/selftests/timers/inconsistency-check.c:75:2-3 Reported-by: Zeal Robot Signed-off-by: Zhang Mingyu Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/timers/inconsistency-check.c b/tools/testing/selftests/timers/inconsistency-check.c index 022d3ffe3fbff..e6756d9c60a7e 100644 --- a/tools/testing/selftests/timers/inconsistency-check.c +++ b/tools/testing/selftests/timers/inconsistency-check.c @@ -72,7 +72,7 @@ char *clockstring(int clockid) return "CLOCK_BOOTTIME_ALARM"; case CLOCK_TAI: return "CLOCK_TAI"; - }; + } return "UNKNOWN_CLOCKID"; }