From f0e418b62909904b22288d7efdf2568e6884a9ac Mon Sep 17 00:00:00 2001 From: Ramprakash Jelari Date: Mon, 24 Nov 2014 17:18:44 +0530 Subject: [PATCH] dvbsection: Fix format string compiler warning --- gst-libs/gst/mpegts/gst-dvb-section.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/mpegts/gst-dvb-section.c b/gst-libs/gst/mpegts/gst-dvb-section.c index 71f79b5586..bdb62ca30d 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 =