mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
mpegts: Fix a compiler warning
Causes the following warning on clang: gst-dvb-section.c:567:36: error: format specifies type 'unsigned long' but the argument has type 'int' [-Werror,-Wformat] descriptors_loop_length, end - 4 - data); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
This commit is contained in:
parent
c873c57430
commit
70ed4fd438
1 changed files with 1 additions and 1 deletions
|
@ -564,7 +564,7 @@ _parse_nit (GstMpegtsSection * section)
|
|||
GST_WARNING
|
||||
("PID %d invalid NIT entry %d descriptors loop length %d (only have %"
|
||||
G_GSIZE_FORMAT ")", section->pid, section->subtable_extension,
|
||||
descriptors_loop_length, end - 4 - data);
|
||||
descriptors_loop_length, (gsize) (end - 4 - data));
|
||||
goto error;
|
||||
}
|
||||
stream->descriptors =
|
||||
|
|
Loading…
Reference in a new issue