Commit bddac4f6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

hls: fix format string

parent 40e8801c
......@@ -137,7 +137,9 @@ bool HLSManager::updatePlaylist()
nextPlaylistupdate = now + (mininterval + maxinterval) / (2 * CLOCK_FREQ);
msg_Dbg(stream, "Updated playlist, next update in %" PRId64 "s %ld %ld", nextPlaylistupdate - now, mininterval, maxinterval );
msg_Dbg(stream, "Updated playlist, next update in %" PRId64 "s "
"%" PRId64 " %" PRId64, nextPlaylistupdate - now, mininterval,
maxinterval);
return true;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment