matroska-demux: Fix compiler warning
authorSebastian Dröge <sebastian@centricular.com>
Wed, 30 Oct 2013 21:12:45 +0000 (22:12 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 30 Oct 2013 21:13:06 +0000 (22:13 +0100)
matroska-demux.c: In function 'gst_matroska_demux_add_stream':
matroska-demux.c:1379:7: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'guint64' [-Werror=format=]
       "%03u", context->uid);
       ^

gst/matroska/matroska-demux.c

index 056c281..6359f1f 100644 (file)
@@ -1376,7 +1376,7 @@ gst_matroska_demux_add_stream (GstMatroskaDemux * demux, GstEbmlRead * ebml)
 
   stream_id =
       gst_pad_create_stream_id_printf (context->pad, GST_ELEMENT_CAST (demux),
-      "%03u", context->uid);
+      "%03" G_GUINT64_FORMAT, context->uid);
   stream_start =
       gst_pad_get_sticky_event (demux->common.sinkpad, GST_EVENT_STREAM_START,
       0);