diff options
author | Ramprakash Jelari <ramprakash.jelari@e-consystems.com> | 2014-11-24 17:18:44 +0530 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-11-24 12:51:34 +0100 |
commit | f0e418b62909904b22288d7efdf2568e6884a9ac (patch) | |
tree | 2a43683a69fe82b5729348c963b91a4fd6f1f12a /gst-libs/gst/mpegts | |
parent | cbe46c0373121b2347e410cdf49e937cde653ab4 (diff) | |
download | gstreamer-plugins-bad-f0e418b62909904b22288d7efdf2568e6884a9ac.tar.gz |
dvbsection: Fix format string compiler warning
Diffstat (limited to 'gst-libs/gst/mpegts')
-rw-r--r-- | gst-libs/gst/mpegts/gst-dvb-section.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/mpegts/gst-dvb-section.c b/gst-libs/gst/mpegts/gst-dvb-section.c index 71f79b558..bdb62ca30 100644 --- a/gst-libs/gst/mpegts/gst-dvb-section.c +++ b/gst-libs/gst/mpegts/gst-dvb-section.c @@ -383,7 +383,7 @@ _parse_bat (GstMpegtsSection * section) GST_WARNING ("PID %d invalid BAT 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 = |