From: Zhang Mingyu Date: Fri, 5 Nov 2021 01:35:47 +0000 (+0000) Subject: kselftests: timers:Remove unneeded semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7b0653eca4cf7d57de84379bd81441d574901ddb;p=linux.git kselftests: timers:Remove unneeded semicolon Eliminate the following coccinelle check warning: tools/testing/selftests/timers/alarmtimer-suspend.c:82:2-3 Reported-by: Zeal Robot Signed-off-by: Zhang Mingyu Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/timers/alarmtimer-suspend.c b/tools/testing/selftests/timers/alarmtimer-suspend.c index 4da09dbf83ba8..54da4b088f4c8 100644 --- a/tools/testing/selftests/timers/alarmtimer-suspend.c +++ b/tools/testing/selftests/timers/alarmtimer-suspend.c @@ -79,7 +79,7 @@ char *clockstring(int clockid) return "CLOCK_BOOTTIME_ALARM"; case CLOCK_TAI: return "CLOCK_TAI"; - }; + } return "UNKNOWN_CLOCKID"; }