Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Jun 2025 08:53:52 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 52b047555dec - stable/14 - bin/timeout: remove unreachable break after usage()
Message-ID:  <202506160853.55G8rquW042948@gitrepo.freebsd.org>

index | next in thread | raw e-mail

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;
 		}
 	}
 


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202506160853.55G8rquW042948>