Merge pull request #8480 from JosJuice/volumeverifier-block-future

VolumeVerifier: Fix a copypaste error
This commit is contained in:
Mat M 2019-11-22 11:42:50 -05:00 committed by GitHub
commit bc449fb98f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1122,7 +1122,7 @@ void VolumeVerifier::Process()
if (m_block_index < m_blocks.size() &&
m_blocks[m_block_index].offset < m_progress + bytes_to_read)
{
m_md5_future = std::async(
m_block_future = std::async(
std::launch::async,
[this, read_succeeded, bytes_to_read](size_t block_index, u64 progress) {
while (block_index < m_blocks.size() &&