git: 00f60781122a - stable/14 - fusefs: Fix warning formatting

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Tue, 03 Sep 2024 14:55:09 UTC
The branch stable/14 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=00f60781122a12fd4997630c91e0a638e24ae20c

commit 00f60781122a12fd4997630c91e0a638e24ae20c
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2024-08-27 20:29:05 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-09-03 14:54:43 +0000

    fusefs: Fix warning formatting
    
    Reviewed by:    asomers
    MFC after:      1 week
    Differential Revision:  https://reviews.freebsd.org/D46456
    
    (cherry picked from commit 705008fbfdbeff147fe624ae506f3781b5ba10bf)
---
 sys/fs/fuse/fuse_internal.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/fs/fuse/fuse_internal.c b/sys/fs/fuse/fuse_internal.c
index 30e3cebfa500..f67bfe0e91c3 100644
--- a/sys/fs/fuse/fuse_internal.c
+++ b/sys/fs/fuse/fuse_internal.c
@@ -283,12 +283,12 @@ fuse_internal_cache_attrs(struct vnode *vp, struct fuse_attr *attr,
 			 * dirty writes!  That's a server bug.
 			 */
 			if (fuse_libabi_geq(data, 7, 23)) {
-				msg = "writeback cache incoherent!."
+				msg = "writeback cache incoherent!  "
 				    "To prevent data corruption, disable "
 				    "the writeback cache according to your "
 				    "FUSE server's documentation.";
 			} else {
-				msg = "writeback cache incoherent!."
+				msg = "writeback cache incoherent!  "
 				    "To prevent data corruption, disable "
 				    "the writeback cache by setting "
 				    "vfs.fusefs.data_cache_mode to 0 or 1.";