debug: fix format string that was missing a var

This commit is contained in:
Stefan Kost 2009-11-21 17:47:26 +02:00
parent 3d73a7458a
commit 9e8db533a1

View file

@ -708,7 +708,8 @@ gst_base_audio_src_get_offset (GstBaseAudioSrc * src)
- src->ringbuffer->segbase;
if (sample != -1) {
GST_DEBUG_OBJECT (src, "at sample %" G_GUINT64_FORMAT, segdone, sample);
GST_DEBUG_OBJECT (src, "at segment %d and sample %" G_GUINT64_FORMAT,
segdone, sample);
/* figure out the segment and the offset inside the segment where
* the sample should be read from. */
readseg = sample / sps;