mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
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:
parent
2d2481c35f
commit
52f7eb31ae
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue