summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorJan Ekström <jeebjp@gmail.com>2017-12-11 00:16:01 +0200
committerJan Ekström <jeebjp@gmail.com>2017-12-11 00:16:01 +0200
commitaffcccb00792cbce28e135a7cb4589dc9c0525cd (patch)
tree1cad53915f93b6e6ae9e995fa891f4c47cb37d4c /video
parentb60ac5b5bab4984cf808bcc487bf387ee677f985 (diff)
downloadmpv-affcccb00792cbce28e135a7cb4589dc9c0525cd.tar.bz2
mpv-affcccb00792cbce28e135a7cb4589dc9c0525cd.tar.xz
vo: fix a compiler warning by properly printing a 64bit integer
Diffstat (limited to 'video')
-rw-r--r--video/out/vo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 8e63be75e6..63f5b345e6 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -964,7 +964,7 @@ static void drop_unrendered_frame(struct vo *vo)
if ((in->frame_queued->pts + in->frame_queued->duration) > mp_time_us())
goto end;
- MP_VERBOSE(vo, "Dropping unrendered frame (pts %li)\n", in->frame_queued->pts);
+ MP_VERBOSE(vo, "Dropping unrendered frame (pts %"PRId64")\n", in->frame_queued->pts);
talloc_free(in->frame_queued);
in->frame_queued = NULL;