[vlc-commits] hls: fix format string
Rémi Denis-Courmont
git at videolan.org
Thu Jun 11 22:53:18 CEST 2015
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Jun 11 23:51:59 2015 +0300| [bddac4f631ecd79a91e83bbb57147e4a36ddcf02] | committer: Rémi Denis-Courmont
hls: fix format string
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bddac4f631ecd79a91e83bbb57147e4a36ddcf02
---
modules/demux/hls/HLSManager.cpp | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/modules/demux/hls/HLSManager.cpp b/modules/demux/hls/HLSManager.cpp
index e64dc2b..c5a0863 100644
--- a/modules/demux/hls/HLSManager.cpp
+++ b/modules/demux/hls/HLSManager.cpp
@@ -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;
}
More information about the vlc-commits
mailing list