dash: Use correct ISO C scanf conversion specifier

This commit is contained in:
Diego Biurrun 2016-01-03 20:31:13 +01:00
parent 3ec6f855d0
commit 07cac07c0c
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ static void set_codec_str(AVFormatContext *s, AVCodecParameters *par,
tags[0] = ff_mp4_obj_type;
oti = av_codec_get_tag(tags, par->codec_id);
if (oti)
av_strlcatf(str, size, ".%02x", oti);
av_strlcatf(str, size, ".%02"SCNx32, oti);
else
return;