In src/plugins.c:

> +	GList *list;
> +
> +	gtk_tree_store_clear(store);
> +	list = g_list_first(plugin_list);
> +	if (list == NULL)
> +	{
> +		gtk_tree_store_append(store, &iter, NULL);
> +		gtk_tree_store_set(store, &iter, PLUGIN_COLUMN_CHECK, FALSE,
> +				PLUGIN_COLUMN_PLUGIN, NULL, -1);
> +	}
> +	else
> +	{
> +		Plugin *p;
> +		for (; list != NULL; list = list->next)
> +		{
> +			p = list->data;

no biggie but still applies if you'd like to change it


Reply to this email directly or view it on GitHub.