Date: Wed, 15 Jan 2025 23:33:12 GMT From: Alan Somers <asomers@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 52f7eb31ae84 - main - fusefs: fix the 32-bit build after 564c732b5c0 Message-ID: <202501152333.50FNXC6H008633@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by asomers: URL: https://cgit.FreeBSD.org/src/commit/?id=52f7eb31ae84b0a02cd79c857c3201cb7b65c00f commit 52f7eb31ae84b0a02cd79c857c3201cb7b65c00f Author: Alan Somers <asomers@FreeBSD.org> AuthorDate: 2025-01-15 23:31:56 +0000 Commit: Alan Somers <asomers@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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501152333.50FNXC6H008633>