insertbin, tests: fix printf format compiler warnings
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 25 Jan 2013 12:24:55 +0000 (12:24 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 25 Jan 2013 12:25:15 +0000 (12:25 +0000)
gst-libs/gst/insertbin/gstinsertbin.c
tests/check/elements/autoconvert.c

index 295d2bc..1aa5c08 100644 (file)
@@ -622,7 +622,7 @@ gst_insert_bin_do_change (GstInsertBin * self, GstPad * pad)
       } else {
         if (!gst_ghost_pad_set_target (GST_GHOST_PAD (self->priv->sinkpad),
                 sinkpad)) {
-          GST_WARNING_OBJECT (self, "Can not set %s:%s as target for %s",
+          GST_WARNING_OBJECT (self, "Can not set %s:%s as target for %s:%s",
               GST_DEBUG_PAD_NAME (sinkpad),
               GST_DEBUG_PAD_NAME (self->priv->sinkpad));
           goto error;
@@ -639,7 +639,7 @@ gst_insert_bin_do_change (GstInsertBin * self, GstPad * pad)
       } else {
         if (!gst_ghost_pad_set_target (GST_GHOST_PAD (self->priv->srcpad),
                 srcpad)) {
-          GST_WARNING_OBJECT (self, "Can not set %s:%s as target for %s",
+          GST_WARNING_OBJECT (self, "Can not set %s:%s as target for %s:%s",
               GST_DEBUG_PAD_NAME (srcpad),
               GST_DEBUG_PAD_NAME (self->priv->srcpad));
           goto error;
index 02dad51..a6458fc 100644 (file)
@@ -105,7 +105,7 @@ GST_START_TEST (test_autoconvert_simple)
 
   /* Push 10 items */
   for (i = 0; i < 10; i++) {
-    GST_LOG ("Pushing test buffer %d, caps 1");
+    GST_LOG ("Pushing test buffer %d, caps 1", i);
     fail_unless (gst_pad_push (test_src_pad, gst_buffer_new_and_alloc (4096))
         == GST_FLOW_OK);
   }
@@ -117,7 +117,7 @@ GST_START_TEST (test_autoconvert_simple)
 
   /* Push 10 more items */
   for (i = 0; i < 10; i++) {
-    GST_LOG ("Pushing test buffer %d, caps 2");
+    GST_LOG ("Pushing test buffer %d, caps 2", i);
     fail_unless (gst_pad_push (test_src_pad, gst_buffer_new_and_alloc (4096))
         == GST_FLOW_OK);
   }