fusefs: fix the 32-bit build after 564c732b5c

It's a  printf format specifier again.

MFC with:	564c732b5c
Sponsored by:	ConnectWise
This commit is contained in:
Alan Somers 2025-01-15 16:31:56 -07:00
parent 2d2481c35f
commit 52f7eb31ae

View file

@ -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);
}