alsaspdifsink: printf format fixes

This commit is contained in:
Tim-Philipp Müller 2009-11-05 21:44:39 +00:00
parent 2d043ef744
commit cf481210e8

View file

@ -312,9 +312,9 @@ alsaspdifsink_get_time (GstClock * clock, gpointer user_data)
samples = 0;
result = gst_util_uint64_scale_int (samples, GST_SECOND, sink->rate);
GST_LOG_OBJECT (sink,
"Samples raw: %d, delay: %d, real: %d, Time: %" GST_TIME_FORMAT, raw,
delay, samples, GST_TIME_ARGS (result));
GST_LOG_OBJECT (sink, "Samples raw: %d, delay: %d, real: %d, "
"Time: %" GST_TIME_FORMAT, (int) raw, (int) delay, (int) samples,
GST_TIME_ARGS (result));
return result;
}