tools/gst-launch.c: More space on the left for the tag names, to cater for the 'exten...
authorTim-Philipp Müller <tim@centricular.net>
Tue, 15 Aug 2006 10:08:34 +0000 (10:08 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Tue, 15 Aug 2006 10:08:34 +0000 (10:08 +0000)
Original commit message from CVS:
* tools/gst-launch.c: (print_tag):
More space on the left for the tag names, to cater
for the 'extended comment' tag (not touching the
string for the first line since it's translated).

ChangeLog
tools/gst-launch.c

index 386bdcf..2bf07aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
 
+       * tools/gst-launch.c: (print_tag):
+         More space on the left for the tag names, to cater
+         for the 'extended comment' tag (not touching the
+         string for the first line since it's translated).
+
+2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
+
        * libs/gst/check/gstcheck.h:
          Fix ASSERT_CRITICAL and ASSERT_WARNING macros to actually
          print something when they fail.
index 355e673..80771a5 100644 (file)
@@ -266,9 +266,9 @@ print_tag (const GstTagList * list, const gchar * tag, gpointer unused)
     }
 
     if (i == 0) {
-      g_print ("%15s: %s\n", gst_tag_get_nick (tag), str);
+      g_print ("%16s: %s\n", gst_tag_get_nick (tag), str);
     } else {
-      g_print ("               : %s\n", str);
+      g_print ("%16s: %s\n", "", str);
     }
 
     g_free (str);