diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-11-17 19:47:32 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-11-17 19:47:32 +0000 |
commit | 8ce409bd328ccb8d150ef406c407785ef4ff6e67 (patch) | |
tree | 8f6dc5aaad47040dc8130a554b0f3973ed92f7c7 /gst | |
parent | b6d0b1334923ec5d3419e3b3488868c7879b701b (diff) | |
download | gst-plugins-bad-8ce409bd328ccb8d150ef406c407785ef4ff6e67.tar.gz gst-plugins-bad-8ce409bd328ccb8d150ef406c407785ef4ff6e67.tar.bz2 gst-plugins-bad-8ce409bd328ccb8d150ef406c407785ef4ff6e67.zip |
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')
-rw-r--r-- | gst/rtpmanager/rtpsource.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |