summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud Bonatti <arnaud.bonatti@gmail.com>2018-02-22 21:53:40 +0100
committerTim-Philipp Müller <tim@centricular.com>2018-02-23 10:02:23 +0000
commite3a3d4fb7635108fd12f93bb96b2bce1bfaab382 (patch)
treebf6b27abcf5e8799a771a58343b9d9c53b06f59a
parent427033591caf3cf9e51ed359072c518771313731 (diff)
rtpulpfec: fix debug log printf format warning on 32-bit platforms
https://bugzilla.gnome.org/show_bug.cgi?id=793732
-rw-r--r--gst/rtp/gstrtpulpfecdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtp/gstrtpulpfecdec.c b/gst/rtp/gstrtpulpfecdec.c
index 28a0a6914..eba34369c 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;