rtpulpfec: fix debug log printf format warning on 32-bit platforms

https://bugzilla.gnome.org/show_bug.cgi?id=793732
This commit is contained in:
Arnaud Bonatti 2018-02-22 21:53:40 +01:00 committed by Tim-Philipp Müller
parent 427033591c
commit e3a3d4fb76

View file

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