From 8f52f1a355ccff983fa2542266abe374d305e8fe Mon Sep 17 00:00:00 2001 From: rbuj Date: Sun, 20 Dec 2020 21:02:16 +0100 Subject: baobab: remove warning -Wunused-value --- baobab/src/baobab-ringschart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'baobab') diff --git a/baobab/src/baobab-ringschart.c b/baobab/src/baobab-ringschart.c index e7b4174b..38461c5b 100644 --- a/baobab/src/baobab-ringschart.c +++ b/baobab/src/baobab-ringschart.c @@ -517,7 +517,7 @@ baobab_ringschart_draw_subfolder_tips (GtkWidget *chart, cairo_t *cr) /* get the GdkRectangle of the tooltip (with a little padding) */ _rect.x = (int) (tooltip_rect.x - 1.0); _rect.y = (int) (tooltip_rect.y - 1.0); - _rect.width = (int) (tooltip_rect.width + 2,0); + _rect.width = (int) (tooltip_rect.width + 2.0); _rect.height = (int) (tooltip_rect.height + 2.0); /* Check if tooltip overlaps */ -- cgit v1.2.1