ges: fix a couple of printf format warnings
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Mon, 31 Jan 2011 19:00:49 +0000 (19:00 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Mon, 31 Jan 2011 19:00:49 +0000 (19:00 +0000)
ges/ges-keyfile-formatter.c
ges/ges-simple-timeline-layer.c
ges/ges-timeline-layer.c

index 9ea90d3e8875bd06fe960cf7f129f05dad7d4993..5b69c23297c1e060b9881f86ac47131571df23ae 100644 (file)
@@ -302,7 +302,7 @@ create_object (GKeyFile * kf, gchar * group, GESTimelineLayer * layer)
     goto fail_free_keys;
   }
 
-  GST_DEBUG ("processing parameter list", group);
+  GST_DEBUG ("processing parameter list '%s'", group);
 
   for (p = params, i = 1; i < n_keys; i++, p++) {
     gchar *value;
index 23a1520d27a0336cae80919efe516cfb7dfc4f47..104580b4676e71cd157d48e26ee6199915df9347 100644 (file)
@@ -250,7 +250,8 @@ gstl_recalculate (GESSimpleTimelineLayer * self)
         start = pos;
 
         if (end > start) {
-          GST_ERROR ("%d, %d: overlapping transitions!", start, end);
+          GST_ERROR ("%" G_GUINT64_FORMAT ", %" G_GUINT64_FORMAT ": "
+              "overlapping transitions!", start, end);
           valid = FALSE;
         }
       }
@@ -265,7 +266,7 @@ gstl_recalculate (GESSimpleTimelineLayer * self)
     valid = FALSE;
   }
 
-  GST_DEBUG ("Finished recalculating: final start pos is: " GST_TIME_FORMAT,
+  GST_DEBUG ("Finished recalculating: final start pos is: %" GST_TIME_FORMAT,
       GST_TIME_ARGS (pos));
 
   GES_TIMELINE_LAYER (self)->max_gnl_priority = priority;
index ca10a724568cee2cf3427bec406e4332ed7a14f4..3cc057f13958ee23e1c071e7bda0988deece58a8 100644 (file)
@@ -234,7 +234,7 @@ ges_timeline_layer_add_object (GESTimelineLayer * layer,
   tl_obj_layer = ges_timeline_object_get_layer (object);
 
   if (G_UNLIKELY (tl_obj_layer)) {
-    GST_WARNING ("TimelineObject %p already belongs to another layer");
+    GST_WARNING ("TimelineObject %p already belongs to another layer", object);
     g_object_unref (tl_obj_layer);
     return FALSE;
   }