diff options
author | Christoph Lohmann <20h@r-36.net> | 2013-02-15 19:36:20 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2013-02-15 19:36:20 +0100 |
commit | e0ec2cf984ff8006b99cf4ca8590ceec7113daac (patch) | |
tree | ff9020f76c9ddb533a96a7da91a0fd9e58165a10 | |
parent | a92a678e252aeeb54537dfa7e3f106eac88f8d77 (diff) | |
download | st-e0ec2cf984ff8006b99cf4ca8590ceec7113daac.tar.gz st-e0ec2cf984ff8006b99cf4ca8590ceec7113daac.tar.bz2 |
Style inquisition.
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |