diff options
author | Youness Alaoui <youness.alaoui@collabora.co.uk> | 2012-04-16 21:14:17 +0000 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-04-17 09:09:14 +0200 |
commit | be5d2987a8b4448402e47817c6485f2b36355034 (patch) | |
tree | 4e02aaf4eefa87264f0303e49f777d8a56c66b8d | |
parent | 894aa56140d5e3c79f91283e31ce1106ba36e9d1 (diff) |
gst-inspect: If running with --print-all, fix printing of the Children: line
-rw-r--r-- | tools/gst-inspect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index 055360718..cde6e1cdf 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -940,7 +940,7 @@ print_children_info (GstElement * element) children = (GList *) GST_BIN (element)->children; if (children) { n_print ("\n"); - g_print ("Children:\n"); + n_print ("Children:\n"); } while (children) { |