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:
Andy Wingo 2009-02-23 15:24:00 +01:00
parent 4cd4883ed3
commit dcc6ab2cce

View file

@ -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;