diff mbox series

selftests/timers: Unneeded semicolon

Message ID 20220813152624.4478-1-tangmin@cdjrlc.com (mailing list archive)
State New
Headers show
Series selftests/timers: Unneeded semicolon | expand

Commit Message

min tang Aug. 13, 2022, 3:26 p.m. UTC
There is no semicolon after '}' in line 75.

Signed-off-by: min tang <tangmin@cdjrlc.com>
---
 tools/testing/selftests/timers/nsleep-lat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/testing/selftests/timers/nsleep-lat.c b/tools/testing/selftests/timers/nsleep-lat.c
index eb3e79ed7b4a..a7ca9825e106 100644
--- a/tools/testing/selftests/timers/nsleep-lat.c
+++ b/tools/testing/selftests/timers/nsleep-lat.c
@@ -72,7 +72,7 @@  char *clockstring(int clockid)
 		return "CLOCK_BOOTTIME_ALARM";
 	case CLOCK_TAI:
 		return "CLOCK_TAI";
-	};
+	}
 	return "UNKNOWN_CLOCKID";
 }