aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/timers
diff options
context:
space:
mode:
authorZhang Mingyu <zhang.mingyu@zte.com.cn>2021-11-05 01:42:08 +0000
committerShuah Khan <skhan@linuxfoundation.org>2021-12-10 16:46:00 -0700
commit7ace3e9ae0492a6b33f5af8b8e1a6f1e0390cc15 (patch)
tree280d7898e804e4c679e71ef95cf946ebcb945748 /tools/testing/selftests/timers
parentkselftests: timers:Remove unneeded semicolon (diff)
downloadwireguard-linux-7ace3e9ae0492a6b33f5af8b8e1a6f1e0390cc15.tar.xz
wireguard-linux-7ace3e9ae0492a6b33f5af8b8e1a6f1e0390cc15.zip
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 <zealci@zte.com.cn> Signed-off-by: Zhang Mingyu <zhang.mingyu@zte.com.cn> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/timers')
-rw-r--r--tools/testing/selftests/timers/inconsistency-check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/timers/inconsistency-check.c b/tools/testing/selftests/timers/inconsistency-check.c
index 022d3ffe3fbf..e6756d9c60a7 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";
}