Commit 07cac07c authored by Diego Biurrun's avatar Diego Biurrun

dash: Use correct ISO C scanf conversion specifier

parent 3ec6f855
......@@ -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;
......
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