Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Jan 2021 10:29:46 GMT
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 7d3310c4fcdd - main - linux: remove spurious newline.
Message-ID:  <202101191029.10JATkb0003345@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by trasz:

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

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101191029.10JATkb0003345>