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:
Vineeth TM 2015-07-08 08:59:49 +09:00 committed by Tim-Philipp Müller
parent 5314ee3fa4
commit ffe9cbc1f6

View file

@ -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)