summaryrefslogtreecommitdiff
path: root/tools/gst-inspect.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gst-inspect.c')
-rw-r--r--tools/gst-inspect.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
index 89a1fab92c..9619fd202c 100644
--- a/tools/gst-inspect.c
+++ b/tools/gst-inspect.c
@@ -506,9 +506,11 @@ print_object_properties_info (GObject * obj, GObjectClass * obj_class,
g_type_name (param->value_type));
if (param->value_type == GST_TYPE_STRUCTURE) {
const GstStructure *s = gst_value_get_structure (&value);
- if (s)
+ if (s) {
+ g_print ("\n");
gst_structure_foreach (s, print_field,
(gpointer) " ");
+ }
}
} else if (G_IS_PARAM_SPEC_POINTER (param)) {
if (param->value_type != G_TYPE_POINTER) {