about summary refs log tree commit diff
path: root/src/libsync/comm
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsync/comm')
-rw-r--r--src/libsync/comm/select.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/comm/select.rs b/src/libsync/comm/select.rs
index 0cb230644df..de89e33ffda 100644
--- a/src/libsync/comm/select.rs
+++ b/src/libsync/comm/select.rs
@@ -132,7 +132,7 @@ impl Select {
     /// event could either be that data is available or the corresponding
     /// channel has been closed.
     pub fn wait(&self) -> uint {
-        self.wait2(false)
+        self.wait2(true)
     }
 
     /// Helper method for skipping the preflight checks during testing