The branch main has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=705008fbfdbeff147fe624ae506f3781b5ba10bf

commit 705008fbfdbeff147fe624ae506f3781b5ba10bf
Author:     Mark Johnston <ma...@freebsd.org>
AuthorDate: 2024-08-27 20:29:05 +0000
Commit:     Mark Johnston <ma...@freebsd.org>
CommitDate: 2024-08-27 20:29:05 +0000

    fusefs: Fix warning formatting
    
    Reviewed by:    asomers
    MFC after:      1 week
    Differential Revision:  https://reviews.freebsd.org/D46456
---
 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 29d88fc942f4..11d7b2d3e9bb 100644
--- a/sys/fs/fuse/fuse_internal.c
+++ b/sys/fs/fuse/fuse_internal.c
@@ -282,12 +282,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.";

Reply via email to