mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
rtp: fix another debug log printf format warning on 32-bit systems
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
This commit is contained in:
parent
d2b51bd727
commit
7b74816f07
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue