increasing for loops are idiomatic

This commit is contained in:
Markus Teich 2016-09-02 11:49:02 +02:00
parent 03a8717991
commit a55594fdd6
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ lockscreen(Display *dpy, int screen)
XDefineCursor(dpy, lock->win, invisible);
/* Try to grab mouse pointer *and* keyboard for 600ms, else fail the lock */
for (i = 6, ptgrab = kbgrab = -1; i; --i) {
for (i = 0, ptgrab = kbgrab = -1; i < 6; i++) {
if (ptgrab != GrabSuccess) {
ptgrab = XGrabPointer(dpy, lock->root, False,
ButtonPressMask | ButtonReleaseMask |