1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avformat/hlsenc: remove unneeded l prefix from %lf

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-04-03 00:27:53 +02:00
parent 96b8e7a9cd
commit f359bac27c

View File

@ -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);
}