From f359bac27cf2b9f1a70f38ece99e02b5b2f64c7b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 3 Apr 2014 00:27:53 +0200 Subject: [PATCH] avformat/hlsenc: remove unneeded l prefix from %lf Signed-off-by: Michael Niedermayer --- libavformat/hlsenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e7e67c61a7..54a56fe4ad 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -148,7 +148,7 @@ static int hls_window(AVFormatContext *s, int last) FFMAX(0, hls->sequence - hls->nb_entries)); for (en = hls->list; en; en = en->next) { - avio_printf(hls->pb, "#EXTINF:%lf,\n", en->duration); + avio_printf(hls->pb, "#EXTINF:%f,\n", en->duration); avio_printf(hls->pb, "%s\n", en->name); }