git: e9910377a7a9 - main - bin/cp: remove unreachable break
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 03 Jan 2024 19:07:31 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=e9910377a7a90d0c9da9055b33450778af23434a commit e9910377a7a90d0c9da9055b33450778af23434a Author: rilysh <nightquick@proton.me> AuthorDate: 2024-01-03 19:03:51 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-01-03 19:05:50 +0000 bin/cp: remove unreachable break Signed-off-by: rilysh <nightquick@proton.me> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/872 --- bin/cp/cp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/cp/cp.c b/bin/cp/cp.c index 1455979bdb6e..14d1cc2a3f75 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -149,7 +149,6 @@ main(int argc, char *argv[]) break; default: usage(); - break; } argc -= optind; argv += optind;