summaryrefslogtreecommitdiff
path: root/gtk/gtkimmodule.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2013-02-18 19:37:20 -0500
committerCosimo Cecchi <cosimoc@gnome.org>2013-02-18 19:38:21 -0500
commit018a4255624928fb7d951f1d1c89196fe77e8267 (patch)
tree41910b11aefa53debc2e1245cf82078a4c2c2dba /gtk/gtkimmodule.c
parentb61198cfcbed499496a9581d5e8ce5e9ad4ae7c4 (diff)
downloadgtk+-018a4255624928fb7d951f1d1c89196fe77e8267.tar.gz
immodule: fix a GCC warning
Diffstat (limited to 'gtk/gtkimmodule.c')
-rw-r--r--gtk/gtkimmodule.c2
1 files changed, 1 insertions, 1 deletions
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;
}