From c3645239f58bb2e14110059e104338fc6d4fd44d Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Mon, 17 Nov 2008 19:47:32 +0000 Subject: 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. --- gst/rtpmanager/rtpsource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c index 102ac063..5ee3cb31 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; } -- cgit