summaryrefslogtreecommitdiff
path: root/boot/boot.c
diff options
context:
space:
mode:
Diffstat (limited to 'boot/boot.c')
-rw-r--r--boot/boot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/boot.c b/boot/boot.c
index 17e5f4a0..e9fb11d9 100644
--- a/boot/boot.c
+++ b/boot/boot.c
@@ -1603,9 +1603,9 @@ S_io_select (mach_port_t object,
FD_SET (0, &x);
n = select (1,
- (type & SELECT_READ) ? &r : 0,
- (type & SELECT_WRITE) ? &w : 0,
- (type & SELECT_URG) ? &x : 0,
+ (*type & SELECT_READ) ? &r : 0,
+ (*type & SELECT_WRITE) ? &w : 0,
+ (*type & SELECT_URG) ? &x : 0,
0);
if (n < 0)
return errno;