gst/: Printf format fixes (#476128).
authorPeter Kjellerstedt <pkj@axis.com>
Wed, 12 Sep 2007 08:38:21 +0000 (08:38 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 12 Sep 2007 08:38:21 +0000 (08:38 +0000)
Original commit message from CVS:
Patch by: Peter Kjellerstedt  <pkj at axis com>
* gst-libs/gst/app/gstappsink.c:
* gst/flv/gstflvdemux.c:
* gst/flv/gstflvparse.c:
* gst/interleave/deinterleave.c:
* gst/switch/gstswitch.c:
Printf format fixes (#476128).

gst/interleave/deinterleave.c

index 71c6a41..f2e7977 100644 (file)
@@ -223,7 +223,7 @@ no_channels:
 static GstFlowReturn
 gst_deinterleave_process (GstDeinterleave * self, GstBuffer * buf)
 {
-  GstFlowReturn ret;
+  GstFlowReturn ret = GST_FLOW_OK;      /* initialized to silence a warning */
   GList *srcs;
   guint bufsize, i, j, channels, pads_pushed, nframes;
   GstBuffer **buffers_out;