diff options
author | Jan Ekström <jeebjp@gmail.com> | 2017-12-11 00:16:01 +0200 |
---|---|---|
committer | Jan Ekström <jeebjp@gmail.com> | 2017-12-11 00:16:01 +0200 |
commit | affcccb00792cbce28e135a7cb4589dc9c0525cd (patch) | |
tree | 1cad53915f93b6e6ae9e995fa891f4c47cb37d4c /video/out | |
parent | b60ac5b5bab4984cf808bcc487bf387ee677f985 (diff) |
vo: fix a compiler warning by properly printing a 64bit integer
Diffstat (limited to 'video/out')
-rw-r--r-- | video/out/vo.c | 2 |
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; |