[vlc-commits] dash: fix invalid C++11 suffix literals

Jonathan Calmels git at videolan.org
Thu Feb 12 17:42:52 CET 2015


vlc | branch: master | Jonathan Calmels <jbjcalmels at gmail.com> | Thu Feb 12 16:32:00 2015 +0100| [16da120d262cef6b2acffa962e644c2b5be80225] | committer: Jean-Baptiste Kempf

dash: fix invalid C++11 suffix literals

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=16da120d262cef6b2acffa962e644c2b5be80225
---

 modules/demux/dash/DASHManager.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/demux/dash/DASHManager.cpp b/modules/demux/dash/DASHManager.cpp
index d6990da..cec6cf0 100644
--- a/modules/demux/dash/DASHManager.cpp
+++ b/modules/demux/dash/DASHManager.cpp
@@ -264,7 +264,7 @@ bool DASHManager::updateMPD()
 
     nextMPDupdate = now + (maxinterval - mininterval) / 2;
 
-    msg_Dbg(stream, "Updated MPD, next update in %"PRId64"s (%"PRId64"..%"PRId64")",
+    msg_Dbg(stream, "Updated MPD, next update in %" PRId64 "s (%" PRId64 "..%" PRId64 ")",
             nextMPDupdate - now, mininterval, maxinterval );
 
     return true;



More information about the vlc-commits mailing list