diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2013-02-18 19:37:20 -0500 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2013-02-18 19:38:21 -0500 |
commit | 018a4255624928fb7d951f1d1c89196fe77e8267 (patch) | |
tree | 41910b11aefa53debc2e1245cf82078a4c2c2dba /gtk/gtkimmodule.c | |
parent | b61198cfcbed499496a9581d5e8ce5e9ad4ae7c4 (diff) | |
download | gtk+-018a4255624928fb7d951f1d1c89196fe77e8267.tar.gz |
immodule: fix a GCC warning
Diffstat (limited to 'gtk/gtkimmodule.c')
-rw-r--r-- | gtk/gtkimmodule.c | 2 |
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; } |