Fix a syntax error so this compiles. next.minor

Sat, 06 Oct 2007 23:07:45 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Sat, 06 Oct 2007 23:07:45 +0000
branch
next.minor
changeset 20863
1fb9e7564f5d
parent 20862
dc0817d26fee
child 20864
d2bdc834d515

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;
 

mercurial