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:
parent
b6d0b13349
commit
8ce409bd32
@ -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),
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user