commit e0ec2cf984ff8006b99cf4ca8590ceec7113daac from: Christoph Lohmann <20h@r-36.net> date: Fri Feb 15 18:36:20 2013 UTC Style inquisition. commit - a92a678e252aeeb54537dfa7e3f106eac88f8d77 commit + e0ec2cf984ff8006b99cf4ca8590ceec7113daac blob - f6e606b193e06056cba87103a75b715e75621d13 blob + 0ae2c90b3b38f9f2d8878f2f272eeb0dbd3e7028 --- st.c +++ st.c @@ -3182,7 +3182,6 @@ run(void) { } gettimeofday(&now, NULL); - /* usecs until (next) frame */ drawtimeout.tv_sec = 0; drawtimeout.tv_usec = (1000/xfps) * 1000; tv = &drawtimeout; @@ -3193,7 +3192,8 @@ run(void) { if(FD_ISSET(xfd, &rfd)) xev = actionfps; - if(TIMEDIFF(now, last) > (xev ? (1000/xfps) : (1000/actionfps))) { + if(TIMEDIFF(now, last) > \ + (xev ? (1000/xfps) : (1000/actionfps))) { while(XPending(xw.dpy)) { XNextEvent(xw.dpy, &ev); if(XFilterEvent(&ev, None))