Code compiles

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-08-13 17:13:14 -07:00
parent 5f7b534afd
commit 1f5dddcca6
11 changed files with 36 additions and 36 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ void CMemoryBlock::Uncompress(CMemoryBlock& toBlock) const
#endif
uncompress((unsigned char*)toBlock.GetBuffer(), &destSize, (unsigned char*)GetBuffer(), GetSize());
assert(result == Z_OK);
assert(destSize == m_uncompressedSize);
assert(destSize == static_cast<unsigned long>(m_uncompressedSize));
}
//////////////////////////////////////////////////////////////////////////