summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-11-17 19:47:32 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-08-11 02:30:38 +0100
commitc3645239f58bb2e14110059e104338fc6d4fd44d (patch)
tree776fd300b73a175423c78f8172dab0b0eed25a0e
parent5ab3e1059442f3bb77a26e982e834bd383faec47 (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.
-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;
}