selftests: timers: Remove unneeded semicolon
authorZhang Mingyu <zhang.mingyu@zte.com.cn>
Fri, 5 Nov 2021 01:42:08 +0000 (01:42 +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/inconsistency-check.c:75: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/inconsistency-check.c

index 022d3ffe3fbffbdfe87b217063e77ccf1716948b..e6756d9c60a7e173d5024f8ea5b71edb27ca2042 100644 (file)
@@ -72,7 +72,7 @@ char *clockstring(int clockid)
                return "CLOCK_BOOTTIME_ALARM";
        case CLOCK_TAI:
                return "CLOCK_TAI";
-       };
+       }
        return "UNKNOWN_CLOCKID";
 }