aboutsummaryrefslogtreecommitdiffstats
path: root/unix/tx/TXDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'unix/tx/TXDialog.h')
-rw-r--r--unix/tx/TXDialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tx/TXDialog.h b/unix/tx/TXDialog.h
index 861a20be..3187247d 100644
--- a/unix/tx/TXDialog.h
+++ b/unix/tx/TXDialog.h
@@ -62,7 +62,7 @@ public:
fd_set rfds;
FD_ZERO(&rfds);
FD_SET(ConnectionNumber(dpy), &rfds);
- int n = select(FD_SETSIZE, &rfds, 0, 0, 0);
+ int n = select(FD_SETSIZE, &rfds, nullptr, nullptr, nullptr);
if (n < 0) throw rdr::SystemException("select",errno);
}
}