Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-09-30 19:17:44 +0400
committerChristopher Faylor <me@cgf.cx>2002-09-30 19:17:44 +0400
commit6cae97d5dc6d2c8e5cb36826c22cf547c1ed6714 (patch)
tree7ed4c25a3a5b5432ba17f51e530f354d021f8f25 /winsup/cygwin/select.cc
parent66dca8bb0d03d1ede951e780f4c07c3115ab0875 (diff)
whitespace
Diffstat (limited to 'winsup/cygwin/select.cc')
-rw-r--r--winsup/cygwin/select.cc6
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++;