diff options
author | Christopher Faylor <me@cgf.cx> | 2002-09-30 15:17:44 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-09-30 15:17:44 +0000 |
commit | 6cae97d5dc6d2c8e5cb36826c22cf547c1ed6714 (patch) | |
tree | 7ed4c25a3a5b5432ba17f51e530f354d021f8f25 /winsup/cygwin/select.cc | |
parent | 66dca8bb0d03d1ede951e780f4c07c3115ab0875 (diff) | |
download | cygnal-6cae97d5dc6d2c8e5cb36826c22cf547c1ed6714.tar.gz cygnal-6cae97d5dc6d2c8e5cb36826c22cf547c1ed6714.tar.bz2 cygnal-6cae97d5dc6d2c8e5cb36826c22cf547c1ed6714.zip |
whitespace
Diffstat (limited to 'winsup/cygwin/select.cc')
-rw-r--r-- | winsup/cygwin/select.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc index 1b9f9d93f..2e1635b21 100644 --- a/winsup/cygwin/select.cc +++ b/winsup/cygwin/select.cc @@ -338,17 +338,17 @@ set_bits (select_record *me, fd_set *readfds, fd_set *writefds, { UNIX_FD_SET (me->fd, writefds); if (me->except_on_write && me->fh->get_device () == FH_SOCKET) - ((fhandler_socket *) me->fh)->set_connect_state (CONNECTED); + ((fhandler_socket *) me->fh)->set_connect_state (CONNECTED); ready++; } if ((me->except_selected || me->except_on_write) && me->except_ready) { if (me->except_on_write) /* Only on sockets */ - { + { UNIX_FD_SET (me->fd, writefds); if (me->fh->get_device () == FH_SOCKET) ((fhandler_socket *) me->fh)->set_connect_state (CONNECTED); - } + } if (me->except_selected) UNIX_FD_SET (me->fd, exceptfds); ready++; |