The branch main has been updated by trasz: URL: https://cgit.FreeBSD.org/src/commit/?id=7d3310c4fcdd19622211602bf97b267595936756
commit 7d3310c4fcdd19622211602bf97b267595936756 Author: Edward Tomasz Napierala <[email protected]> AuthorDate: 2021-01-14 22:48:56 +0000 Commit: Edward Tomasz Napierala <[email protected]> CommitDate: 2021-01-19 09:56:45 +0000 linux: remove spurious newline. Sponsored by: The FreeBSD Foundation --- sys/compat/linux/linux_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c index 98c7c3364faf..0c40a14d58f7 100644 --- a/sys/compat/linux/linux_file.c +++ b/sys/compat/linux/linux_file.c @@ -1652,7 +1652,7 @@ fcntl_common(struct thread *td, struct linux_fcntl_args *args) return (kern_fcntl(td, args->fd, F_ADD_SEALS, linux_to_bsd_bits(args->arg, seal_bitmap, 0))); default: - linux_msg(td, "unsupported fcntl cmd %d\n", args->cmd); + linux_msg(td, "unsupported fcntl cmd %d", args->cmd); return (EINVAL); } } _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
