fixed more warnings.
This commit is contained in:
parent
c1ecc41f9d
commit
aaea3d52aa
4 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue