From a85b51998ede3fc26c4711862cae02243ca3d77c Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 22 Dec 2021 08:56:29 +0100 Subject: Fix implicit conversion changes signedness: 'gboolean' to 'guint' --- capplets/common/mate-theme-info.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'capplets') diff --git a/capplets/common/mate-theme-info.c b/capplets/common/mate-theme-info.c index 47412a4d..f9f018a1 100644 --- a/capplets/common/mate-theme-info.c +++ b/capplets/common/mate-theme-info.c @@ -742,13 +742,13 @@ update_theme_index (GFile *index_uri, if (key_element & MATE_THEME_GTK_2) { theme_used_to_exist = theme_info->has_gtk; - theme_info->has_gtk = theme_exists; + theme_info->has_gtk = (theme_exists != FALSE); } else if (key_element & MATE_THEME_GTK_2_KEYBINDING) { theme_used_to_exist = theme_info->has_keybinding; - theme_info->has_keybinding = theme_exists; + theme_info->has_keybinding = (theme_exists != FALSE); } else if (key_element & MATE_THEME_MARCO) { theme_used_to_exist = theme_info->has_marco; - theme_info->has_marco = theme_exists; + theme_info->has_marco = (theme_exists != FALSE); } if (!theme_info->has_marco && !theme_info->has_keybinding && !theme_info->has_gtk) { -- cgit v1.2.1