Sat, 06 Oct 2007 23:07:45 +0000
Fix a syntax error so this compiles.
| libpurple/plugin.c | file | annotate | diff | comparison | revisions |
--- a/libpurple/plugin.c Sat Oct 06 22:59:14 2007 +0000 +++ b/libpurple/plugin.c Sat Oct 06 23:07:45 2007 +0000 @@ -644,7 +644,7 @@ purple_debug_info("plugins", "Unloading plugin %s\n", plugin->info->name); /* Unload all plugins that depend on this plugin. */ - for (l = plugin->dependent_plugins, l != NULL, l = ll) { + for (l = plugin->dependent_plugins; l != NULL; l = ll) { const char * dep_name = (const char *)l->data; PurplePlugin *dep_plugin;