streamsynchronizer: fix printf format compiler warnings
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Mon, 26 Jul 2010 18:25:55 +0000 (20:25 +0200)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Mon, 26 Jul 2010 18:25:55 +0000 (20:25 +0200)
Make OSX build bot happy.

gst/playback/gststreamsynchronizer.c

index 78bf00d..96015ae 100644 (file)
@@ -603,8 +603,9 @@ gst_stream_synchronizer_sink_chain (GstPad * pad, GstBuffer * buffer)
         new_start = timestamp_end - GST_SECOND;
 
         GST_DEBUG_OBJECT (ostream->sinkpad,
-            "Advancing stream %d from %" GST_TIME_FORMAT " to %"
-            GST_TIME_FORMAT, ostream->stream_number, last_stop, new_start);
+            "Advancing stream %u from %" GST_TIME_FORMAT " to %"
+            GST_TIME_FORMAT, ostream->stream_number, GST_TIME_ARGS (last_stop),
+            GST_TIME_ARGS (new_start));
 
         gst_pad_push_event (ostream->srcpad,
             gst_event_new_new_segment_full (TRUE, ostream->segment.rate,