Mercurial > audlegacy
diff src/audacious/pluginenum.c @ 3438:7043b5c94a94 trunk
Fix an oops.
| author | William Pitcock <nenolod@atheme.org> |
|---|---|
| date | Fri, 07 Sep 2007 03:41:14 -0500 |
| parents | 3092a8b3fe34 |
| children | c0eb377bb4e5 |
line wrap: on
line diff
--- a/src/audacious/pluginenum.c Fri Sep 07 03:20:28 2007 -0500 +++ b/src/audacious/pluginenum.c Fri Sep 07 03:41:14 2007 -0500 @@ -521,7 +521,7 @@ disabled = g_strsplit(cfg.disabled_iplugins, ":", 0); while (disabled[i]) { - INPUT_PLUGIN(plugin_get_plugin(disabled))->enabled = FALSE; + INPUT_PLUGIN(plugin_get_plugin(disabled[i]))->enabled = FALSE; i++; }
