summaryrefslogtreecommitdiff
path: root/libavfilter/vsrc_movie.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-12-31 00:29:36 +0100
committerDiego Biurrun <diego@biurrun.de>2012-12-31 11:20:45 +0100
commitbcb8d9eb8ff6e8f1e4c02d0143407373cffdbdeb (patch)
tree9c2a1c26e404de4768119767201892aa350899d3 /libavfilter/vsrc_movie.c
parent117f79de2d0cbae22d997c79ea442ee139e8dcf6 (diff)
Drop unnecessary 'l' length modifier when printfing double values.
%f denotes a double argument and 'l' does nothing in this case according to the C spec.
Diffstat (limited to 'libavfilter/vsrc_movie.c')
-rw-r--r--libavfilter/vsrc_movie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_movie.c b/libavfilter/vsrc_movie.c
index e6185d686e..0023d55bbc 100644
--- a/libavfilter/vsrc_movie.c
+++ b/libavfilter/vsrc_movie.c
@@ -255,7 +255,7 @@ static int movie_get_frame(AVFilterLink *outlink)
if (!movie->frame->sample_aspect_ratio.num)
movie->picref->video->pixel_aspect = st->sample_aspect_ratio;
av_dlog(outlink->src,
- "movie_get_frame(): file:'%s' pts:%"PRId64" time:%lf pos:%"PRId64" aspect:%d/%d\n",
+ "movie_get_frame(): file:'%s' pts:%"PRId64" time:%f pos:%"PRId64" aspect:%d/%d\n",
movie->file_name, movie->picref->pts,
(double)movie->picref->pts * av_q2d(st->time_base),
movie->picref->pos,