increasing for loops are idiomatic
This commit is contained in:
parent
03a8717991
commit
a55594fdd6
1 changed files with 1 additions and 1 deletions
2
slock.c
2
slock.c
|
@ -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 |
|
||||
|
|
Loading…
Reference in a new issue