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.
This commit is contained in:
Sebastian Dröge 2008-11-17 19:47:32 +00:00
parent b6d0b13349
commit 8ce409bd32
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-11-17 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* 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 <wim.taymans@collabora.co.uk>
* gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),

View file

@ -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;
}