Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
lavf/xwma: fix incorrect format specifier
Browse files Browse the repository at this point in the history
Signed-off-by: Moritz Barsnick <[email protected]>
  • Loading branch information
barsnick authored and richardpl committed Jan 31, 2017
1 parent e65db4c commit 0478728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavformat/xwma.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static int xwma_read_header(AVFormatContext *s)
*/
if (st->codecpar->codec_id != AV_CODEC_ID_WMAV2 &&
st->codecpar->codec_id != AV_CODEC_ID_WMAPRO) {
avpriv_request_sample(s, "Unexpected codec (tag 0x04%x; id %d)",
avpriv_request_sample(s, "Unexpected codec (tag 0x%04x; id %d)",
st->codecpar->codec_tag, st->codecpar->codec_id);
} else {
/* In all xWMA files I have seen, there is no extradata. But the WMA
Expand Down

0 comments on commit 0478728

Please sign in to comment.