fix compiler warnings.

This commit is contained in:
Kim Kulling
2020-03-30 20:41:39 +02:00
parent 4c177ad72e
commit 6973aea6da
4 changed files with 3 additions and 4 deletions

View File

@@ -176,7 +176,7 @@ void XGLImporter::InternReadFile( const std::string& pFile,
raw_reader->IncPtr(2);
zstream.next_in = reinterpret_cast<Bytef*>( raw_reader->GetPtr() );
zstream.avail_in = raw_reader->GetRemainingSize();
zstream.avail_in = (uInt) raw_reader->GetRemainingSize();
size_t total = 0l;