linux: remove spurious newline.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2021-01-14 22:48:56 +00:00
parent 57dab0292a
commit 7d3310c4fc

View File

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