Commit 4a9a6a1f authored by Michael Niedermayer's avatar Michael Niedermayer

vcodec/jpeg2000dec: fix av_log() type

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8d9fa738
...@@ -1195,7 +1195,7 @@ static int jpeg2000_read_main_headers(Jpeg2000DecoderContext *s) ...@@ -1195,7 +1195,7 @@ static int jpeg2000_read_main_headers(Jpeg2000DecoderContext *s)
break; break;
default: default:
av_log(s->avctx, AV_LOG_ERROR, av_log(s->avctx, AV_LOG_ERROR,
"unsupported marker 0x%.4X at pos 0x%tX\n", "unsupported marker 0x%.4X at pos 0x%X\n",
marker, bytestream2_tell(&s->g) - 4); marker, bytestream2_tell(&s->g) - 4);
bytestream2_skip(&s->g, len - 2); bytestream2_skip(&s->g, len - 2);
break; break;
......
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