From f7c34e5c14694a92ee13ef2d749f937a2e1b97fa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 15 Aug 2006 10:08:34 +0000 Subject: [PATCH] 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). --- ChangeLog | 7 +++++++ tools/gst-launch.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 386bdcf..2bf07aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2006-08-15 Tim-Philipp Müller + * 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 + * libs/gst/check/gstcheck.h: Fix ASSERT_CRITICAL and ASSERT_WARNING macros to actually print something when they fail. diff --git a/tools/gst-launch.c b/tools/gst-launch.c index 355e673..80771a5 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); -- 2.7.4