git: 52b047555dec - stable/14 - bin/timeout: remove unreachable break after usage()

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Mon, 16 Jun 2025 08:53:52 UTC
The branch stable/14 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=52b047555dec4f1ac7ff603ca86378bf522d8138

commit 52b047555dec4f1ac7ff603ca86378bf522d8138
Author:     rilysh <nightquick@proton.me>
AuthorDate: 2024-01-03 19:03:52 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2025-06-16 08:51:51 +0000

    bin/timeout: remove unreachable break after usage()
    
    (cherry picked from commit 4d8d9111a4bf79c6d5b41340b47cf768f2c6d080)
---
 bin/timeout/timeout.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/bin/timeout/timeout.c b/bin/timeout/timeout.c
index 68abb28e2c50..429ca64349e3 100644
--- a/bin/timeout/timeout.c
+++ b/bin/timeout/timeout.c
@@ -230,7 +230,6 @@ main(int argc, char **argv)
 			case 'h':
 			default:
 				usage();
-				break;
 		}
 	}