aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWynn Wolf Arbor2020-06-11 19:04:16 +0200
committerWolfgang Müller2021-04-27 12:28:22 +0200
commit5418e51f221e27a39944327eaed149e45d8227aa (patch)
treef2cec161f56d8cd159431ca890cfa51bdc7b492b
parent6f52101dc14d14414affb07b537619e4609daf6b (diff)
downloadcwm-5418e51f221e27a39944327eaed149e45d8227aa.tar.gz
Replace INFTIM with -1
-rw-r--r--calmwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calmwm.c b/calmwm.c
index 64adb8c..9953172 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -120,7 +120,7 @@ main(int argc, char **argv)
pfd[0].events = POLLIN;
while (cwm_status == CWM_RUNNING) {
xev_process();
- if (poll(pfd, 1, INFTIM) == -1) {
+ if (poll(pfd, 1, -1) == -1) {
if (errno != EINTR)
warn("poll");
}