diff mbox series

[-next,1/2] selftests:timers: remove unneeded semicolon

Message ID 20241017062737.98466-1-jiapeng.chong@linux.alibaba.com
State New
Headers show
Series [-next,1/2] selftests:timers: remove unneeded semicolon | expand

Commit Message

Jiapeng Chong Oct. 17, 2024, 6:27 a.m. UTC
No functional modification involved.

./tools/testing/selftests/timers/nanosleep.c:63:2-3: Unneeded semicolon.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=11407
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 tools/testing/selftests/timers/nanosleep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/testing/selftests/timers/nanosleep.c b/tools/testing/selftests/timers/nanosleep.c
index 252c6308c569..36f9b97f232a 100644
--- a/tools/testing/selftests/timers/nanosleep.c
+++ b/tools/testing/selftests/timers/nanosleep.c
@@ -60,7 +60,7 @@  char *clockstring(int clockid)
 		return "CLOCK_BOOTTIME_ALARM";
 	case CLOCK_TAI:
 		return "CLOCK_TAI";
-	};
+	}
 	return "UNKNOWN_CLOCKID";
 }