syntax fix

This commit is contained in:
Markus Teich 2016-11-23 00:28:43 +01:00
parent 0ff0d9f7a7
commit 325581b935
1 changed files with 4 additions and 2 deletions

View File

@ -212,8 +212,10 @@ readpw(Display *dpy, struct xrandr *rr, struct lock **locks, int nscreens,
break; break;
} }
} }
} else for (screen = 0; screen < nscreens; screen++) } else {
XRaiseWindow(dpy, locks[screen]->win); for (screen = 0; screen < nscreens; screen++)
XRaiseWindow(dpy, locks[screen]->win);
}
} }
} }