Commit c5fdd069 authored by Michael Niedermayer's avatar Michael Niedermayer

tiff: fix "assignment discards qualifiers from pointer target type" warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent bd2613a3
......@@ -332,7 +332,7 @@ static int tiff_uncompress(uint8_t *dst, unsigned long *len, const uint8_t *src,
z_stream zstream = { 0 };
int zret;
zstream.next_in = src;
zstream.next_in = (uint8_t *)src;
zstream.avail_in = size;
zstream.next_out = dst;
zstream.avail_out = *len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment