gst-inspect: Fix indention for printing typefinder features

This commit is contained in:
Sebastian Dröge 2012-11-12 10:30:08 +01:00
parent 7691a82f3a
commit 2b49726d8e

View file

@ -1234,7 +1234,7 @@ print_plugin_features (GstPlugin * plugin)
if (extensions) { if (extensions) {
guint i = 0; guint i = 0;
g_print ("%s: %s: ", gst_plugin_get_name (plugin), g_print (" %s: %s: ", gst_plugin_get_name (plugin),
gst_plugin_feature_get_name (feature)); gst_plugin_feature_get_name (feature));
while (extensions[i]) { while (extensions[i]) {
g_print ("%s%s", i > 0 ? ", " : "", extensions[i]); g_print ("%s%s", i > 0 ? ", " : "", extensions[i]);
@ -1242,7 +1242,7 @@ print_plugin_features (GstPlugin * plugin)
} }
g_print ("\n"); g_print ("\n");
} else } else
g_print ("%s: %s: no extensions\n", gst_plugin_get_name (plugin), g_print (" %s: %s: no extensions\n", gst_plugin_get_name (plugin),
gst_plugin_feature_get_name (feature)); gst_plugin_feature_get_name (feature));
num_typefinders++; num_typefinders++;