diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-02 12:09:50 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-02 12:09:50 +0000 |
commit | 49230da8be536615a3a87575fe50fd8b7c3c6aea (patch) | |
tree | e0aee51171c30e973c2946eb9e82e3b9888218a2 /ace/IOStream_T.i | |
parent | f6b56d5899970cebb308f58e0da58c3f5f82af39 (diff) | |
download | ATCD-49230da8be536615a3a87575fe50fd8b7c3c6aea.tar.gz |
ooops, fixed typo
Diffstat (limited to 'ace/IOStream_T.i')
-rw-r--r-- | ace/IOStream_T.i | 2 |
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 |