From c75f58d01bb7bbe139cd73a85894dc5f50185816 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 18 Nov 2011 09:58:44 -0500 Subject: Fix compiler warnings. --- e-util/e-plugin.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'e-util') diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c index 6eba330893..f839591cc6 100644 --- a/e-util/e-plugin.c +++ b/e-util/e-plugin.c @@ -131,8 +131,9 @@ ep_set_enabled (const gchar *id, for (l = ep_disabled; l != NULL; l = l->next) g_ptr_array_add (array, l->data); g_ptr_array_add (array, NULL); - g_settings_set_strv (settings, "disabled-eplugins", array->pdata); - + g_settings_set_strv ( + settings, "disabled-eplugins", + (const gchar * const *) array->pdata); g_ptr_array_free (array, TRUE); g_object_unref (settings); } -- cgit v1.2.3