diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-05 23:44:27 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-05 23:44:27 +0000 |
commit | f50f516eca65322ecee3dc7fb1c0720dd949004b (patch) | |
tree | 3090df284400934aacf260f0f402bb29041d6f91 | |
parent | 4b1566d7f3893e7f84655b3d7dceea504daf2cdf (diff) |
raw1394: printf format fixes
-rw-r--r-- | ext/raw1394/gst1394clock.c | 2 | ||||
-rw-r--r-- | 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 (); |