[evolution/kill-bonobo] Fix a compiler warning.



commit 657a8228ccedbded35c57c08f7d1549e30dceaf0
Author: Matthew Barnes <mbarnes redhat com>
Date:   Wed May 20 23:47:19 2009 -0400

    Fix a compiler warning.
---
 mail/evolution-module-mail.c |   27 ++++++++++++++-------------
 1 files changed, 14 insertions(+), 13 deletions(-)

diff --git a/mail/evolution-module-mail.c b/mail/evolution-module-mail.c
index 83db1d9..a629681 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;
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]