diff --git a/kompmgr/kompmgr.c b/kompmgr/kompmgr.c index e0f3629e4f..38952a2b1b 100644 --- a/kompmgr/kompmgr.c +++ b/kompmgr/kompmgr.c @@ -355,7 +355,6 @@ run_fades (Display *dpy) int now = get_time_in_milliseconds(); fade *f, *next; int steps; - Bool last; #if 0 printf ("run fades\n"); @@ -365,7 +364,6 @@ run_fades (Display *dpy) steps = 1 + (now - fade_time) / fade_delta; for (next = fades; f = next; ) { - last = False; win *w = f->w; next = f->next; f->cur += f->step * steps; @@ -382,7 +380,6 @@ run_fades (Display *dpy) if (f->cur >= f->finish) { w->opacity = f->finish*OPAQUE; - last = True; dequeue_fade (dpy, f); } } @@ -391,7 +388,6 @@ run_fades (Display *dpy) if (f->cur <= f->finish) { w->opacity = f->finish*OPAQUE; - last = True; dequeue_fade (dpy, f); } }