Skip to content
Snippets Groups Projects
Commit f359bac2 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avformat/hlsenc: remove unneeded l prefix from %lf

parent 96b8e7a9
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment