Commit 5735552f authored by Diego Biurrun's avatar Diego Biurrun

pngenc: Drop pointless pointer cast in png_write_row()

parent a786c825
...@@ -213,7 +213,7 @@ static int png_write_row(PNGEncContext *s, const uint8_t *data, int size) ...@@ -213,7 +213,7 @@ static int png_write_row(PNGEncContext *s, const uint8_t *data, int size)
int ret; int ret;
s->zstream.avail_in = size; s->zstream.avail_in = size;
s->zstream.next_in = (uint8_t *)data; s->zstream.next_in = data;
while (s->zstream.avail_in > 0) { while (s->zstream.avail_in > 0) {
ret = deflate(&s->zstream, Z_NO_FLUSH); ret = deflate(&s->zstream, Z_NO_FLUSH);
if (ret != Z_OK) if (ret != Z_OK)
......
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