The branch main has been updated by asomers:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=52f7eb31ae84b0a02cd79c857c3201cb7b65c00f

commit 52f7eb31ae84b0a02cd79c857c3201cb7b65c00f
Author:     Alan Somers <asom...@freebsd.org>
AuthorDate: 2025-01-15 23:31:56 +0000
Commit:     Alan Somers <asom...@freebsd.org>
CommitDate: 2025-01-15 23:31:56 +0000

    fusefs: fix the 32-bit build after 564c732b5c0
    
    It's a  printf format specifier again.
    
    MFC with:       564c732b5c0221373d067c9a21da09b310e676ae
    Sponsored by:   ConnectWise
---
 tests/sys/fs/fusefs/mockfs.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/sys/fs/fusefs/mockfs.cc b/tests/sys/fs/fusefs/mockfs.cc
index 532dd27d77b9..35ae6c207229 100644
--- a/tests/sys/fs/fusefs/mockfs.cc
+++ b/tests/sys/fs/fusefs/mockfs.cc
@@ -1035,8 +1035,8 @@ void MockFS::write_response(const mockfs_buf_out &out) {
                ASSERT_EQ(out.expected_errno, errno) << strerror(errno);
        } else {
                if (r <= 0 && errno == EINVAL) {
-                       printf("Failed to write response.  unique=%lu:\n",
-                           out.header.unique);
+                       printf("Failed to write response.  unique=%" PRIu64
+                           ":\n", out.header.unique);
                }
                ASSERT_TRUE(r > 0 || errno == EAGAIN) << strerror(errno);
        }

Reply via email to