mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
rtpklvdepay: fix printf format compiler warning
v_len is of type guint64, but while print the value(16 + len_size + v_len) G_GSIZE_FORMAT is being used instead of G_GUINT64_FORMAT https://bugzilla.gnome.org/show_bug.cgi?id=752100
This commit is contained in:
parent
5314ee3fa4
commit
ffe9cbc1f6
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ gst_rtp_klv_depay_process_data (GstRtpKlvDepay * klvdepay)
|
|||
if (!klv_get_vlen (data, data_len, &v_len, &len_size))
|
||||
goto bad_klv_packet;
|
||||
|
||||
GST_LOG_OBJECT (klvdepay, "want %" G_GSIZE_FORMAT " bytes, "
|
||||
GST_LOG_OBJECT (klvdepay, "want %" G_GUINT64_FORMAT " bytes, "
|
||||
"have %" G_GSIZE_FORMAT " bytes", 16 + len_size + v_len, avail);
|
||||
|
||||
if (avail < 16 + len_size + v_len)
|
||||
|
|
Loading…
Reference in a new issue