evolution r37040 - trunk/filter



Author: tml
Date: Sun Jan 11 20:09:36 2009
New Revision: 37040
URL: http://svn.gnome.org/viewvc/evolution?rev=37040&view=rev

Log:
2009-01-11  Tor Lillqvist  <tml novell com>

	* filter-option.c (get_dynamic_options): Add cast to avoid
	warning.



Modified:
   trunk/filter/ChangeLog
   trunk/filter/filter-option.c

Modified: trunk/filter/filter-option.c
==============================================================================
--- trunk/filter/filter-option.c	(original)
+++ trunk/filter/filter-option.c	Sun Jan 11 20:09:36 2009
@@ -361,7 +361,7 @@
 
 	module = g_module_open (NULL, G_MODULE_BIND_LAZY);
 
-	if (g_module_symbol (module, fo->dynamic_func, &get_func)) {
+	if (g_module_symbol (module, fo->dynamic_func, (gpointer) &get_func)) {
 		res = get_func ();
 	} else {
 		g_warning ("optionlist dynamic fill function '%s' not found", fo->dynamic_func);



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