rtpklvdepay: fix printf format compiler warning
authorVineeth TM <vineeth.tm@samsung.com>
Tue, 7 Jul 2015 23:59:49 +0000 (08:59 +0900)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 8 Jul 2015 07:49:37 +0000 (08:49 +0100)
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

gst/rtp/gstrtpklvdepay.c

index 5d1bdd2..12d3de0 100644 (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)