1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-30 11:02:10 +00:00

vo: fix a compiler warning by properly printing a 64bit integer

This commit is contained in:
Jan Ekström 2017-12-11 00:16:01 +02:00
parent b60ac5b5ba
commit affcccb007

View File

@ -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;