fixed more warnings.

This commit is contained in:
Christoph Oelckers 2023-12-10 15:26:46 +01:00
commit aaea3d52aa
4 changed files with 6 additions and 6 deletions

View file

@ -762,9 +762,9 @@ FCompressedBuffer FSerializer::GetCompressedOutput()
int err;
stream.next_in = (Bytef *)w->mOutString.GetString();
stream.avail_in = buff.mSize;
stream.avail_in = (unsigned)buff.mSize;
stream.next_out = (Bytef*)compressbuf;
stream.avail_out = buff.mSize;
stream.avail_out = (unsigned)buff.mSize;
stream.zalloc = (alloc_func)0;
stream.zfree = (free_func)0;
stream.opaque = (voidpf)0;