From: Sebastian Dröge Date: Mon, 17 Nov 2008 19:47:32 +0000 (+0000) Subject: gst/rtpmanager/rtpsource.c: Fix GST_DEBUG call to only have as many arguments as... X-Git-Tag: GIT_CONVERSION~163 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ce409bd328ccb8d150ef406c407785ef4ff6e67;p=platform%2Fupstream%2Fgst-plugins-bad.git gst/rtpmanager/rtpsource.c: Fix GST_DEBUG call to only have as many arguments as required by the format string. Fixes... Original commit message from CVS: * gst/rtpmanager/rtpsource.c: (get_clock_rate): Fix GST_DEBUG call to only have as many arguments as required by the format string. Fixes a compiler warning. --- diff --git a/ChangeLog b/ChangeLog index d23842e..0d31fc1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-17 Sebastian Dröge + + * gst/rtpmanager/rtpsource.c: (get_clock_rate): + Fix GST_DEBUG call to only have as many arguments as required + by the format string. Fixes a compiler warning. + 2008-11-17 Wim Taymans * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate), diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c index 102ac06..5ee3cb3 100644 --- a/gst/rtpmanager/rtpsource.c +++ b/gst/rtpmanager/rtpsource.c @@ -734,7 +734,7 @@ get_clock_rate (RTPSource * src, guint8 payload) if (src->callbacks.clock_rate) clock_rate = src->callbacks.clock_rate (src, payload, src->user_data); - GST_DEBUG ("got clock-rate %d", payload, clock_rate); + GST_DEBUG ("got clock-rate %d", clock_rate); src->clock_rate = clock_rate; }