diff --git a/libavcodec/pnmdec.c b/libavcodec/pnmdec.c index 13d5763b54..c6dfa2c79e 100644 --- a/libavcodec/pnmdec.c +++ b/libavcodec/pnmdec.c @@ -37,8 +37,8 @@ static int pnm_decode_frame(AVCodecContext *avctx, void *data, int components, sample_len; s->bytestream_start = - s->bytestream = buf; - s->bytestream_end = buf + buf_size; + s->bytestream = (uint8_t *)buf; + s->bytestream_end = (uint8_t *)buf + buf_size; if (ff_pnm_decode_header(avctx, s) < 0) return -1;