Commit d5ec2e9f authored by Rafaël Carré's avatar Rafaël Carré

jpeg: avoid a cast

parent c24ea5fb
...@@ -180,7 +180,7 @@ static picture_t *DecodeBlock(decoder_t *p_dec, block_t **pp_block) ...@@ -180,7 +180,7 @@ static picture_t *DecodeBlock(decoder_t *p_dec, block_t **pp_block)
{ {
goto error; goto error;
} }
for (int i = 0; i < (int)p_jpeg.output_height; i++) { for (unsigned i = 0; i < p_jpeg.output_height; i++) {
p_row_pointers[i] = p_pic->p->p_pixels + p_pic->p->i_pitch * i; p_row_pointers[i] = p_pic->p->p_pixels + p_pic->p->i_pitch * i;
} }
......
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