From affcccb00792cbce28e135a7cb4589dc9c0525cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ekstr=C3=B6m?= Date: Mon, 11 Dec 2017 00:16:01 +0200 Subject: vo: fix a compiler warning by properly printing a 64bit integer --- video/out/vo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video') 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; -- cgit v1.2.3