mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 01:28:34 +00:00
gst-inspect: remove dead assignment
first_flag will be either: * rewritten without being read if we loop again (line 284) * not read again if we don't loop
This commit is contained in:
parent
9e4fa43657
commit
5142a04656
1 changed files with 0 additions and 2 deletions
|
@ -302,8 +302,6 @@ print_element_properties_info (GstElement * element)
|
||||||
if (param->flags & GST_PARAM_CONTROLLABLE) {
|
if (param->flags & GST_PARAM_CONTROLLABLE) {
|
||||||
if (!first_flag)
|
if (!first_flag)
|
||||||
g_print (", ");
|
g_print (", ");
|
||||||
else
|
|
||||||
first_flag = FALSE;
|
|
||||||
g_print (_("controllable"));
|
g_print (_("controllable"));
|
||||||
}
|
}
|
||||||
n_print ("\n");
|
n_print ("\n");
|
||||||
|
|
Loading…
Reference in a new issue