From 57b0f5bef6c8bc8f9c4556af1cbcbae189d7d417 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 8 Oct 2008 15:30:33 +0000 Subject: [PATCH] gst-libs/gst/audio/gstbaseaudiosrc.c: Fix debug statements (space between '%' and actual format). Original commit message from CVS: * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_create): Fix debug statements (space between '%' and actual format). --- ChangeLog | 6 ++++++ gst-libs/gst/audio/gstbaseaudiosrc.c | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 00ad24fe26..b6fd227f80 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-10-08 Edward Hervey + + * gst-libs/gst/audio/gstbaseaudiosrc.c: + (gst_base_audio_src_create): + Fix debug statements (space between '%' and actual format). + 2008-10-08 Wim Taymans * gst/playback/gstdecodebin2.c: (gst_decode_pad_activate): diff --git a/gst-libs/gst/audio/gstbaseaudiosrc.c b/gst-libs/gst/audio/gstbaseaudiosrc.c index 73a71d4677..21a8de6385 100644 --- a/gst-libs/gst/audio/gstbaseaudiosrc.c +++ b/gst-libs/gst/audio/gstbaseaudiosrc.c @@ -862,8 +862,8 @@ gst_base_audio_src_create (GstBaseSrc * bsrc, guint64 offset, guint length, /* the skew we have between running_time and the ringbuffertime */ segment_skew = running_time_segment - current_segment; - GST_DEBUG_OBJECT (bsrc, "\n running_time = % " GST_TIME_FORMAT - "\n timestamp = % " GST_TIME_FORMAT + GST_DEBUG_OBJECT (bsrc, "\n running_time = %" GST_TIME_FORMAT + "\n timestamp = %" GST_TIME_FORMAT "\n running_time_segment = %d" "\n current_segment = %d" "\n segment_skew = %d", @@ -933,8 +933,8 @@ gst_base_audio_src_create (GstBaseSrc * bsrc, guint64 offset, guint length, GST_DEBUG_OBJECT (bsrc, "Timeshifted the ringbuffer with %d segments: " - "Updating the timestamp to % " GST_TIME_FORMAT ", " - "and src->next_sample to % " G_GUINT64_FORMAT, segment_diff, + "Updating the timestamp to %" GST_TIME_FORMAT ", " + "and src->next_sample to %" G_GUINT64_FORMAT, segment_diff, GST_TIME_ARGS (timestamp), src->next_sample); } break;