From 7b74816f07ac7b10158aa1831f7119ee23c662ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 27 Feb 2018 13:13:49 +0000 Subject: [PATCH] rtp: fix another debug log printf format warning on 32-bit systems MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rtpulpfeccommon.c:432:27: error: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 10 has type ‘guint64 {aka long long unsigned int}’ https://bugzilla.gnome.org/show_bug.cgi?id=793732 --- gst/rtp/rtpulpfeccommon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtp/rtpulpfeccommon.c b/gst/rtp/rtpulpfeccommon.c index 9bca5df669..44d2a6e59b 100644 --- a/gst/rtp/rtpulpfeccommon.c +++ b/gst/rtp/rtpulpfeccommon.c @@ -430,7 +430,7 @@ rtp_ulpfec_log_fec_packet (GstDebugCategory * cat, GstDebugLevel level, fec_level_hdr = fec_hdr_get_level_hdr (fec_hdr); GST_CAT_LEVEL_LOG (cat, level, object, - "%-22s: protection_len=%u mask=0x%012lx", + "%-22s: protection_len=%u mask=0x%012" G_GINT64_MODIFIER "x", "fec level header", g_ntohs (fec_level_hdr->protection_len), fec_level_hdr_get_mask (fec_level_hdr, fec_hdr->L));