Fix "discards ‘const’ qualifier" warnings

This commit is contained in:
dequis 2018-08-24 02:11:22 -03:00
commit 9dd836b876
3 changed files with 3 additions and 3 deletions

View file

@ -1424,7 +1424,7 @@ void themes_reload(void)
change_theme(settings_get_str("theme"), FALSE);
while (refs != NULL) {
gconstpointer tmp = refs->data;
void *tmp = refs->data;
refs = g_slist_remove(refs, refs->data);
theme_unref(tmp);
}