mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
mpegtsdescriptor: Fix format string compiler warning
gstmpegtsdescriptor.c:778:16: warning: format specifies type 'unsigned long' but the argument has type 'int' [-Wformat]
This commit is contained in:
parent
0f753b7099
commit
cbe46c0373
1 changed files with 1 additions and 1 deletions
|
@ -775,7 +775,7 @@ gst_mpegts_parse_descriptors (guint8 * buffer, gsize buf_len)
|
|||
}
|
||||
|
||||
GST_DEBUG ("Saw %d descriptors, read %" G_GSIZE_FORMAT " bytes",
|
||||
nb_desc, data - buffer);
|
||||
nb_desc, (gsize) (data - buffer));
|
||||
|
||||
if (data - buffer != buf_len) {
|
||||
GST_WARNING ("descriptors size %d expected %" G_GSIZE_FORMAT,
|
||||
|
|
Loading…
Reference in a new issue