mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
build break in zlib
This commit is contained in:
parent
c6aeea9131
commit
0b98cba9be
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ void[] uncompress(void[] srcbuf, size_t destlen = 0u, int winbits = 15)
|
|||
zs.avail_in = to!uint(srcbuf.length);
|
||||
|
||||
zs.next_out = destbuf.ptr;
|
||||
zs.avail_out = destlen;
|
||||
zs.avail_out = cast(typeof(zs.avail_out))destlen;
|
||||
|
||||
err = etc.c.zlib.inflateInit2(&zs, winbits);
|
||||
if (err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue