keyboard: Fix "argument discards const qualifier" warning
This commit is contained in:
parent
13c939659a
commit
acd3e4a9c6
1 changed files with 2 additions and 2 deletions
|
@ -892,7 +892,7 @@ layout_lists_intersection (GList *first_list,
|
|||
|
||||
while (first_list != NULL)
|
||||
{
|
||||
const char *layout;
|
||||
char *layout;
|
||||
|
||||
layout = first_list->data;
|
||||
g_hash_table_insert (first_set, layout, layout);
|
||||
|
@ -901,7 +901,7 @@ layout_lists_intersection (GList *first_list,
|
|||
|
||||
while (second_list != NULL)
|
||||
{
|
||||
const char *layout;
|
||||
char *layout;
|
||||
|
||||
layout = second_list->data;
|
||||
if (g_hash_table_remove (first_set, layout))
|
||||
|
|
Loading…
Add table
Reference in a new issue