From: Arnaud Bonatti Date: Thu, 22 Feb 2018 20:53:40 +0000 (+0100) Subject: rtpulpfec: fix debug log printf format warning on 32-bit platforms X-Git-Tag: 1.16.2~649 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3a3d4fb7635108fd12f93bb96b2bce1bfaab382;p=platform%2Fupstream%2Fgst-plugins-good.git rtpulpfec: fix debug log printf format warning on 32-bit platforms https://bugzilla.gnome.org/show_bug.cgi?id=793732 --- diff --git a/gst/rtp/gstrtpulpfecdec.c b/gst/rtp/gstrtpulpfecdec.c index 28a0a69..eba3436 100644 --- a/gst/rtp/gstrtpulpfecdec.c +++ b/gst/rtp/gstrtpulpfecdec.c @@ -414,7 +414,7 @@ gst_rtp_ulpfec_dec_handle_sink_event (GstPad * pad, GstObject * parent, else ++self->packets_recovered; GST_DEBUG_OBJECT (self, "Unrecovered / Recovered: %lu / %lu", - self->packets_unrecovered, self->packets_recovered); + (gulong) self->packets_unrecovered, (gulong) self->packets_recovered); } else if (GST_EVENT_CAPS == GST_EVENT_TYPE (event)) { GstCaps *caps; gboolean have_caps_pt = FALSE;