This is an automated email from the git hooks/post-receive script.

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 601c0398e0874c45dacd12f7bbd790c092ab4b1d
Author: Sean Davis <smd.seanda...@gmail.com>
Date:   Thu Jun 6 23:22:45 2019 -0400

    Fix CID 213275: Constant variable guards dead code
---
 savers/gste-popsquares.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/savers/gste-popsquares.c b/savers/gste-popsquares.c
index eac1788..5d0ae02 100644
--- a/savers/gste-popsquares.c
+++ b/savers/gste-popsquares.c
@@ -471,8 +471,8 @@ draw_frame (GSTEPopsquares *pop,
 
             gdk_cairo_set_source_rgba (cr, &(pop->priv->colors[s->color]));
             cairo_rectangle (cr, s->x, s->y,
-                             border ? s->w - border : s->w,
-                             border ? s->h - border : s->h);
+                             s->w - border,
+                             s->h - border);
             cairo_fill (cr);
             s->color++;
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to