mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
gst-inspect: Fix yet another compiler warning
https://bugzilla.gnome.org/show_bug.cgi?id=724045
This commit is contained in:
parent
f0047132a1
commit
be32ae0252
1 changed files with 2 additions and 2 deletions
|
@ -510,8 +510,8 @@ print_element_properties_info (GstElement * element)
|
|||
gst_value_get_fraction_numerator (&value),
|
||||
gst_value_get_fraction_denominator (&value));
|
||||
} else {
|
||||
n_print ("%-23.23s Unknown type %ld \"%s\"", "", param->value_type,
|
||||
g_type_name (param->value_type));
|
||||
n_print ("%-23.23s Unknown type %ld \"%s\"", "",
|
||||
(glong) param->value_type, g_type_name (param->value_type));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue