Mercurial > pidgin.yaz
changeset 11679:f05542391cd2
[gaim-migrate @ 13965]
warning fixes...
committer: Tailor Script <tailor@pidgin.im>
author | Gary Kramlich <grim@reaperworld.com> |
---|---|
date | Mon, 17 Oct 2005 07:13:55 +0000 |
parents | b37c439dfcc0 |
children | 3e8d53214613 |
files | plugins/mono/loader/mono.c |
diffstat | 1 files changed, 2 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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 =