immodule: fix a GCC warning

This commit is contained in:
Cosimo Cecchi 2013-02-18 19:37:20 -05:00
parent b61198cfcb
commit 018a425562

View File

@ -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;
}