audioclock: use GST_STIME_FORMAT for the correct argument
authorMichael Olbrich <m.olbrich@pengutronix.de>
Wed, 20 Jul 2016 10:17:57 +0000 (12:17 +0200)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 20 Jul 2016 11:28:54 +0000 (12:28 +0100)
GST_STIME_ARGS is used for time_offset not for last_time.
This fixes the format string accordingly.

https://bugzilla.gnome.org/show_bug.cgi?id=768990

gst-libs/gst/audio/gstaudioclock.c

index 9d37ad2..edd9a32 100644 (file)
@@ -136,8 +136,8 @@ gst_audio_clock_reset (GstAudioClock * clock, GstClockTime time)
   clock->time_offset = time_offset;
 
   GST_DEBUG_OBJECT (clock,
-      "reset clock to %" GST_TIME_FORMAT ", last %" GST_STIME_FORMAT
-      ", offset %" GST_TIME_FORMAT, GST_TIME_ARGS (time),
+      "reset clock to %" GST_TIME_FORMAT ", last %" GST_TIME_FORMAT
+      ", offset %" GST_STIME_FORMAT, GST_TIME_ARGS (time),
       GST_TIME_ARGS (clock->last_time), GST_STIME_ARGS (time_offset));
 }