summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/IOStream_T.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/IOStream_T.i b/ace/IOStream_T.i
index f502743868c..d5e269047d9 100644
--- a/ace/IOStream_T.i
+++ b/ace/IOStream_T.i
@@ -70,7 +70,7 @@ ACE_IOStream<STREAM>::eof (void) const
// If recv_n() didn't fail or failed because of timeout we're not at
// EOF.
- return rval == 0 || (rval == -1 && ! this->streambuf_->timeout ()(;
+ return rval == 0 || (rval == -1 && ! this->streambuf_->timeout ());
}
template <class STREAM> ACE_INLINE