Address compiler warnings #10 [Wconversion]

This commit is contained in:
2023-10-30 11:41:45 -05:00
parent e9b202f5c8
commit 383c3b4be6
3 changed files with 66 additions and 52 deletions

View File

@ -912,7 +912,7 @@ auto fuse_drive::listxattr_impl(std::string api_path, char *buffer, size_t size,
res = api_error::xattr_buffer_small;
}
required_size += attribute_name_size;
required_size += static_cast<int>(attribute_name_size);
#ifdef __APPLE__
}
#endif