From 657a8228ccedbded35c57c08f7d1549e30dceaf0 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 20 May 2009 23:47:19 -0400 Subject: Fix a compiler warning. --- mail/evolution-module-mail.c | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'mail/evolution-module-mail.c') diff --git a/mail/evolution-module-mail.c b/mail/evolution-module-mail.c index 83db1d9087..a629681b4c 100644 --- a/mail/evolution-module-mail.c +++ b/mail/evolution-module-mail.c @@ -27,19 +27,7 @@ /* Module Entry Points */ void e_module_load (GTypeModule *type_module); void e_module_unload (GTypeModule *type_module); - -G_MODULE_EXPORT const gchar * -g_module_check_init (GModule *module) -{ - /* FIXME Until mail is split into a module library and a - * reusable shared library, prevent the module from - * being unloaded. Unloading the module resets all - * static variables, which screws up foo_get_type() - * functions among other things. */ - g_module_make_resident (module); - - return NULL; -} +const gchar * g_module_check_init (GModule *module); G_MODULE_EXPORT void e_module_load (GTypeModule *type_module) @@ -56,3 +44,16 @@ G_MODULE_EXPORT void e_module_unload (GTypeModule *type_module) { } + +G_MODULE_EXPORT const gchar * +g_module_check_init (GModule *module) +{ + /* FIXME Until mail is split into a module library and a + * reusable shared library, prevent the module from + * being unloaded. Unloading the module resets all + * static variables, which screws up foo_get_type() + * functions among other things. */ + g_module_make_resident (module); + + return NULL; +} -- cgit v1.2.3