Fix 32-bit build warnings and one error again :-)

This commit is contained in:
Vitaliy Filippov
2024-04-11 22:49:33 +03:00
parent ff4414d37e
commit 266d038b11
7 changed files with 34 additions and 34 deletions
+1 -1
View File
@@ -497,7 +497,7 @@ static void extend_inode(nfs_client_t *self, uint64_t inode, uint64_t new_size)
auto & ext = self->parent->blockfs->extends[inode];
if (r.err)
{
fprintf(stderr, "Error extending inode %lu to %lu bytes: %s\n", inode, new_size, r.text.c_str());
fprintf(stderr, "Error extending inode %ju to %ju bytes: %s\n", inode, new_size, r.text.c_str());
}
if (r.err == EAGAIN || ext.next_extend > ext.cur_extend)
{