kselftests: timers:Remove unneeded semicolon
authorZhang Mingyu <zhang.mingyu@zte.com.cn>
Fri, 5 Nov 2021 01:35:47 +0000 (01:35 +0000)
committerShuah Khan <skhan@linuxfoundation.org>
Fri, 10 Dec 2021 23:46:00 +0000 (16:46 -0700)
Eliminate the following coccinelle check warning:
tools/testing/selftests/timers/alarmtimer-suspend.c:82:2-3

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Zhang Mingyu <zhang.mingyu@zte.com.cn>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/timers/alarmtimer-suspend.c

index 4da09dbf83ba8e18aebfe8ddf3a09289bdf2d8a8..54da4b088f4c8983dc433c98c9c4da1377a7bdc2 100644 (file)
@@ -79,7 +79,7 @@ char *clockstring(int clockid)
                return "CLOCK_BOOTTIME_ALARM";
        case CLOCK_TAI:
                return "CLOCK_TAI";
-       };
+       }
        return "UNKNOWN_CLOCKID";
 }