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).
This commit is contained in:
Tim-Philipp Müller 2006-08-15 10:08:34 +00:00
parent c4ff920a76
commit f7c34e5c14
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
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:

View 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);