pngenc: Drop pointless pointer cast in png_write_row()

pull/271/head
Diego Biurrun 10 years ago
parent a786c8259d
commit 5735552f1f
  1. 2
      libavcodec/pngenc.c

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

Loading…
Cancel
Save