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