mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
fix uri handler iteration in gst-inspect
* tools/gst-inspect.c (print_all_uri_handlers): Whoops, fix iteration. I'm stupid.
This commit is contained in:
parent
4cd4883ed3
commit
dcc6ab2cce
1 changed files with 1 additions and 1 deletions
|
@ -1034,7 +1034,7 @@ print_all_uri_handlers (void)
|
|||
plugin->desc.name);
|
||||
|
||||
for (f = features; f; f = f->next) {
|
||||
GstPluginFeature *feature = GST_PLUGIN_FEATURE (features->data);
|
||||
GstPluginFeature *feature = GST_PLUGIN_FEATURE (f->data);
|
||||
|
||||
if (GST_IS_ELEMENT_FACTORY (feature)) {
|
||||
GstElementFactory *factory;
|
||||
|
|
Loading…
Reference in a new issue