git: 7d3310c4fcdd - main - linux: remove spurious newline.

Edward Tomasz Napierala trasz at FreeBSD.org
Tue Jan 19 10:29:46 UTC 2021


The branch main has been updated by trasz:

URL: https://cgit.FreeBSD.org/src/commit/?id=7d3310c4fcdd19622211602bf97b267595936756

commit 7d3310c4fcdd19622211602bf97b267595936756
Author:     Edward Tomasz Napierala <trasz at FreeBSD.org>
AuthorDate: 2021-01-14 22:48:56 +0000
Commit:     Edward Tomasz Napierala <trasz at FreeBSD.org>
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);
 	}
 }


More information about the dev-commits-src-all mailing list