summaryrefslogtreecommitdiff
path: root/gst/rtpmanager/rtpsource.c
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-11-17 19:47:32 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-11-17 19:47:32 +0000
commit8ce409bd328ccb8d150ef406c407785ef4ff6e67 (patch)
tree8f6dc5aaad47040dc8130a554b0f3973ed92f7c7 /gst/rtpmanager/rtpsource.c
parentb6d0b1334923ec5d3419e3b3488868c7879b701b (diff)
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.
Diffstat (limited to 'gst/rtpmanager/rtpsource.c')
-rw-r--r--gst/rtpmanager/rtpsource.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c
index 102ac063a..5ee3cb313 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;
}