summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-08-15 10:08:34 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-08-15 10:08:34 +0000
commitf7c34e5c14694a92ee13ef2d749f937a2e1b97fa (patch)
tree955b11cbfffc90fa2798e776e6ec60d0931d51a2 /tools
parentc4ff920a76986495f1ec43c71411e13bffbe26e9 (diff)
tools/gst-launch.c: More space on the left for the tag names, to cater for the 'extended comment' tag (not touching t...
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).
Diffstat (limited to 'tools')
-rw-r--r--tools/gst-launch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gst-launch.c b/tools/gst-launch.c
index 355e6736d4..80771a527e 100644
--- a/tools/gst-launch.c
+++ b/tools/gst-launch.c
@@ -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);