mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
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
5ab3e10594
commit
c3645239f5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue