summaryrefslogtreecommitdiff
path: root/battstat
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-07-15 16:59:20 +0200
committerraveit65 <[email protected]>2020-08-11 13:35:32 +0200
commit480394cdee90346d4fba01e113c007cd5771fa80 (patch)
treee238c8fa4384d55febf19602111a15725bc6e709 /battstat
parent2412123fbcb1b766aec81cb3cf4c93a3c6c4ed84 (diff)
downloadmate-applets-480394cdee90346d4fba01e113c007cd5771fa80.tar.bz2
mate-applets-480394cdee90346d4fba01e113c007cd5771fa80.tar.xz
Remove -Wtype-limits warnings
Diffstat (limited to 'battstat')
-rw-r--r--battstat/battstat_applet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/battstat/battstat_applet.c b/battstat/battstat_applet.c
index 16755717..7f3838ed 100644
--- a/battstat/battstat_applet.c
+++ b/battstat/battstat_applet.c
@@ -918,15 +918,15 @@ load_preferences(ProgressData *battstat)
if (DEBUG) g_print("load_preferences()\n");
battstat->red_val = g_settings_get_int (settings, "red-value");
- battstat->red_val = CLAMP (battstat->red_val, 0, 100);
+ battstat->red_val = MIN (battstat->red_val, 100);
battstat->red_value_is_time = g_settings_get_boolean (settings, "red-value-is-time");
/* automatically calculate orangle and yellow values from the red value */
battstat->orange_val = battstat->red_val * ORANGE_MULTIPLIER;
- battstat->orange_val = CLAMP (battstat->orange_val, 0, 100);
+ battstat->orange_val = MIN (battstat->orange_val, 100);
battstat->yellow_val = battstat->red_val * YELLOW_MULTIPLIER;
- battstat->yellow_val = CLAMP (battstat->yellow_val, 0, 100);
+ battstat->yellow_val = MIN (battstat->yellow_val, 100);
battstat->lowbattnotification = g_settings_get_boolean (settings, "low-battery-notification");
battstat->fullbattnot = g_settings_get_boolean (settings, "full-battery-notification");