Skip to content
Snippets Groups Projects
Commit 601c0398 authored by Sean Davis's avatar Sean Davis
Browse files

Fix CID 213275: Constant variable guards dead code

parent fe282abe
No related branches found
No related tags found
No related merge requests found
...@@ -471,8 +471,8 @@ draw_frame (GSTEPopsquares *pop, ...@@ -471,8 +471,8 @@ draw_frame (GSTEPopsquares *pop,
gdk_cairo_set_source_rgba (cr, &(pop->priv->colors[s->color])); gdk_cairo_set_source_rgba (cr, &(pop->priv->colors[s->color]));
cairo_rectangle (cr, s->x, s->y, cairo_rectangle (cr, s->x, s->y,
border ? s->w - border : s->w, s->w - border,
border ? s->h - border : s->h); s->h - border);
cairo_fill (cr); cairo_fill (cr);
s->color++; s->color++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment