Commit f9b51f55 authored by Gildas Bazin's avatar Gildas Bazin

* src/misc/modules.c: got rid of unused variable.

parent e56afee7
...@@ -403,7 +403,7 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability, ...@@ -403,7 +403,7 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
/* Parse the module list for capabilities and probe each of them */ /* Parse the module list for capabilities and probe each of them */
for( i_which_module = 0; i_which_module < p_all->i_count; i_which_module++ ) for( i_which_module = 0; i_which_module < p_all->i_count; i_which_module++ )
{ {
int i_shortcut_bonus = 0, i_submodule; int i_shortcut_bonus = 0;
p_module = (module_t *)p_all->p_values[i_which_module].p_object; p_module = (module_t *)p_all->p_values[i_which_module].p_object;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment