From 9c335ec185bffa0e9e5399d8614aac861eb55b1f Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Fri, 9 Oct 2009 14:23:36 +0200 Subject: [PATCH] videorate: fix warning in macosx --- gst/videorate/gstvideorate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/videorate/gstvideorate.c b/gst/videorate/gstvideorate.c index 6e19c2de59..24457f7cec 100644 --- a/gst/videorate/gstvideorate.c +++ b/gst/videorate/gstvideorate.c @@ -773,7 +773,8 @@ gst_video_rate_chain (GstPad * pad, GstBuffer * buffer) GST_LOG_OBJECT (videorate, "END, putting new in old, diff1 %" GST_TIME_FORMAT ", diff2 %" GST_TIME_FORMAT ", next_ts %" GST_TIME_FORMAT - ", in %lld, out %lld, drop %lld, dup %lld", GST_TIME_ARGS (diff1), + ", in %" G_GUINT64_FORMAT ", out %" G_GUINT64_FORMAT ", drop %" + G_GUINT64_FORMAT ", dup %" G_GUINT64_FORMAT, GST_TIME_ARGS (diff1), GST_TIME_ARGS (diff2), GST_TIME_ARGS (videorate->next_ts), videorate->in, videorate->out, videorate->drop, videorate->dup);