The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=e9910377a7a90d0c9da9055b33450778af23434a
commit e9910377a7a90d0c9da9055b33450778af23434a Author: rilysh <[email protected]> AuthorDate: 2024-01-03 19:03:51 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2024-01-03 19:05:50 +0000 bin/cp: remove unreachable break Signed-off-by: rilysh <[email protected]> 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;
