Common/Hash: use zlib-ng for adler32. small cleanups.

This commit is contained in:
Shawn Hoffman
2022-08-01 10:07:27 -07:00
parent fb45ed3981
commit 17c554c165
5 changed files with 189 additions and 251 deletions
+2 -2
View File
@@ -1175,8 +1175,8 @@ void VolumeVerifier::Process()
if (m_hashes_to_calculate.crc32)
{
m_crc32_future = std::async(std::launch::async, [this, byte_increment] {
m_crc32_context =
Common::UpdateCRC32(m_crc32_context, m_data.data(), static_cast<u32>(byte_increment));
m_crc32_context = Common::UpdateCRC32(m_crc32_context, m_data.data(),
static_cast<size_t>(byte_increment));
});
}