[vlc-commits] vout: fix format string
Rémi Denis-Courmont
git at videolan.org
Sun Jan 13 13:45:02 CET 2019
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Jan 13 14:44:50 2019 +0200| [47183497c7fe2a3519ce0ae1a66e62fa685aed49] | committer: Rémi Denis-Courmont
vout: fix format string
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=47183497c7fe2a3519ce0ae1a66e62fa685aed49
---
src/video_output/video_output.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c
index 65d1b7d16d..126778e811 100644
--- a/src/video_output/video_output.c
+++ b/src/video_output/video_output.c
@@ -1169,7 +1169,7 @@ static int ThreadDisplayRenderPicture(vout_thread_t *vout, bool is_forced)
#if 0
vlc_tick_t delay = todisplay->date - vlc_tick_now();
if (delay < 1000)
- msg_Warn(vout, "picture is late (%lld ms)", delay / 1000);
+ msg_Warn(vout, "picture is late (%"PRId64" ms)", delay / 1000);
#endif
if (!is_forced)
vlc_tick_wait(todisplay->date);
More information about the vlc-commits
mailing list