diff options
author | Edward Hervey <bilboed@bilboed.com> | 2009-04-04 14:42:04 +0200 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-04-04 14:42:04 +0200 |
commit | 5142a046562fb9c257c70771c620211df6f38af5 (patch) | |
tree | 8d7f2937912e5e472b3bb4bff92832603db863ff | |
parent | 9e4fa4365704c0ca76899d74e8bf75c3ae67b57a (diff) |
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
-rw-r--r-- | tools/gst-inspect.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index 227e5edd9..99730b2bf 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -302,8 +302,6 @@ print_element_properties_info (GstElement * element) if (param->flags & GST_PARAM_CONTROLLABLE) { if (!first_flag) g_print (", "); - else - first_flag = FALSE; g_print (_("controllable")); } n_print ("\n"); |