diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-05-29 21:07:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-30 00:03:06 +0200 |
commit | fd38a15adf7f4e20f25d89f162e4a8fbbd8ec92e (patch) | |
tree | f481847526293c46c218e4746cb09d48d586edf5 /libavformat/utils.c | |
parent | bb9b7bc62eb645d127cbf283b8f86fd4b6b3c916 (diff) | |
download | ffmpeg-fd38a15adf7f4e20f25d89f162e4a8fbbd8ec92e.tar.gz |
Fix various bad printf format warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 3432b2269f..f0080bc433 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2334,7 +2334,7 @@ int av_find_stream_info(AVFormatContext *ic) if (st->codec_info_nb_frames>1) { int64_t t; if (st->time_base.den > 0 && (t=av_rescale_q(st->info->codec_info_duration, st->time_base, AV_TIME_BASE_Q)) >= ic->max_analyze_duration) { - av_log(ic, AV_LOG_WARNING, "max_analyze_duration %d reached at %Ld\n", ic->max_analyze_duration, t); + av_log(ic, AV_LOG_WARNING, "max_analyze_duration %d reached at %"PRId64"\n", ic->max_analyze_duration, t); break; } st->info->codec_info_duration += pkt->duration; |