mirror of https://git.ffmpeg.org/ffmpeg.git
asfdec: Fix printf format string length modifier
This commit is contained in:
parent
d894f74762
commit
e817d9139f
|
@ -749,7 +749,7 @@ static int asf_read_header(AVFormatContext *s)
|
|||
}
|
||||
}
|
||||
if(avio_tell(pb) != gpos + gsize)
|
||||
av_log(s, AV_LOG_DEBUG, "gpos mismatch our pos=%"PRIu64", end=%"PRIu64"\n", avio_tell(pb)-gpos, gsize);
|
||||
av_log(s, AV_LOG_DEBUG, "gpos mismatch our pos=%"PRIu64", end=%"PRId64"\n", avio_tell(pb)-gpos, gsize);
|
||||
avio_seek(pb, gpos + gsize, SEEK_SET);
|
||||
}
|
||||
ff_get_guid(pb, &g);
|
||||
|
|
Loading…
Reference in New Issue