# HG changeset patch # User Gary Kramlich # Date 1129533235 0 # Node ID f05542391cd2be82f19d87f2d214e58d98fa43ed # Parent b37c439dfcc062eb816430b6e6845fb61b120977 [gaim-migrate @ 13965] warning fixes... committer: Tailor Script diff -r b37c439dfcc0 -r f05542391cd2 plugins/mono/loader/mono.c --- a/plugins/mono/loader/mono.c Mon Oct 17 06:11:02 2005 +0000 +++ b/plugins/mono/loader/mono.c Mon Oct 17 07:13:55 2005 +0000 @@ -150,7 +150,7 @@ /* Destroys a Mono Plugin by calling 'destroy' in the class, and cleaning up all the malloced memory */ -static gboolean destroy_mono_plugin(GaimPlugin *plugin) +static void destroy_mono_plugin(GaimPlugin *plugin) { GaimMonoPlugin *mplug; @@ -177,15 +177,11 @@ g_free(mplug); mplug = NULL; } - - return TRUE; } -gboolean plugin_destroy(GaimPlugin *plugin) +static void plugin_destroy(GaimPlugin *plugin) { mono_jit_cleanup(domain); - - return TRUE; } static GaimPluginLoaderInfo loader_info =