Commit d4f50290 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

help: fix variable shadowing

parent ddf18ea0
......@@ -573,9 +573,9 @@ static void Usage (vlc_object_t *p_this, char const *psz_search)
module_gettext(m, m->psz_help));
/* Print module options */
for (size_t i = 0; i < m->confsize; i++)
for (size_t j = 0; j < m->confsize; j++)
{
const module_config_t *item = m->p_config + i;
const module_config_t *item = m->p_config + j;
if (item->b_removed)
continue; /* Skip removed options */
......
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