From f50f516eca65322ecee3dc7fb1c0720dd949004b Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Thu, 5 Nov 2009 23:44:27 +0000 Subject: raw1394: printf format fixes --- ext/raw1394/gst1394clock.c | 2 +- ext/raw1394/gsthdv1394src.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/raw1394/gst1394clock.c b/ext/raw1394/gst1394clock.c index bb6de1023..3a46d1522 100644 --- a/ext/raw1394/gst1394clock.c +++ b/ext/raw1394/gst1394clock.c @@ -127,7 +127,7 @@ gst_1394_clock_get_internal_time (GstClock * clock) result = (((guint64) _1394clock->cycle_timer_hi) << 32) | cycle_timer; result *= 40; - GST_LOG_OBJECT (clock, "result %lld", result); + GST_LOG_OBJECT (clock, "result %" G_GINT64_FORMAT, result); } else { result = GST_CLOCK_TIME_NONE; } diff --git a/ext/raw1394/gsthdv1394src.c b/ext/raw1394/gsthdv1394src.c index 8fd10a6e3..14fdb76c3 100644 --- a/ext/raw1394/gsthdv1394src.c +++ b/ext/raw1394/gsthdv1394src.c @@ -438,7 +438,7 @@ gst_hdv1394src_create (GstPushSrc * psrc, GstBuffer ** buf) g_assert (dv1394src->outoffset); - GST_LOG ("We have some frames (%d bytes)", dv1394src->outoffset); + GST_LOG ("We have some frames (%u bytes)", (guint) dv1394src->outoffset); /* Create the buffer */ *buf = gst_buffer_new (); -- cgit v1.2.3