summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2012-11-29 21:29:50 +0000
committerSteve Huston <shuston@riverace.com>2012-11-29 21:29:50 +0000
commit1a8ae7b2c0825a412771546a4c49b206bb294aef (patch)
tree9fb8cd7331956213f9a8dc0d78b55f6b9e70df10
parent855d2aa1047f805f3810f953956d16ac1dea4558 (diff)
downloadATCD-1a8ae7b2c0825a412771546a4c49b206bb294aef.tar.gz
Fix typo - missing ;
-rw-r--r--ace/ACE.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/ACE.cpp b/ace/ACE.cpp
index 5a425973294..210412db220 100644
--- a/ace/ACE.cpp
+++ b/ace/ACE.cpp
@@ -2553,7 +2553,7 @@ ACE::handle_timed_complete (ACE_HANDLE h,
// is often set and there are occasional cases seen with some kernels
// where only POLLERR is set on a failed connect.
need_to_check = (fds.revents & POLLIN) || (fds.revents & POLLERR);
- known_failure = (fds.revents & POLLERR)
+ known_failure = (fds.revents & POLLERR);
}
# else
need_to_check = true;