From 018a4255624928fb7d951f1d1c89196fe77e8267 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Mon, 18 Feb 2013 19:37:20 -0500 Subject: [PATCH] immodule: fix a GCC warning --- gtk/gtkimmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkimmodule.c b/gtk/gtkimmodule.c index 5e35498a22..e6372f2edb 100644 --- a/gtk/gtkimmodule.c +++ b/gtk/gtkimmodule.c @@ -650,7 +650,7 @@ lookup_immodule (gchar **immodules_list) gboolean found; gchar *context_id; found = g_hash_table_lookup_extended (contexts_hash, *immodules_list, - &context_id, NULL); + (gpointer *) &context_id, NULL); if (found) return context_id; }